Answer:
void getSquare(int*);
Explanation:
The void is because it does not return a value.
Next is the name of the function "getSquare".
Then inside the ( ) you add the data types you want the function to accept, in this case its int*.
Finally you end with a ; because it is a function prototype.