6. For the given function write the function which it calls.
int square(int a)
{
return(a*a);
}
Answers
Answered by
4
Answer:
Explanation:
int main()
{
printf("%d", square(5));
return 0;
}
shama24:
Thx
Similar questions