Answered You can hire a professional tutor to get the answer.
#include lt;iostreamgt; using namespace std; int fx(int *n); void main() { int number = 10; cout lt;lt; fx(amp;number); return ; } int fx(int
#include <iostream>using namespace std;int fx(int *n);void main(){int number = 10;cout << fx(&number);return ;}int fx(int *n){/*Fill in a statement to compute the square of (*n) */___________________________________________return *n;}