Computer Science, asked by shama24, 1 year ago

6. For the given function write the function which it calls.
int square(int a)
{
return(a*a);
}​

Answers

Answered by sswaraj04
4

Answer:

Explanation:

int main()

{

 printf("%d", square(5));

 return 0;

}


shama24: Thx
Similar questions