For the given function write down
the main function which call it
int Square (int a)
return
(a*a);
Anonymous:
hii
Answers
Answered by
4
Answer:
void main (int k)
{
int sqr=Square(k);
System.out.println( sqr);}
Similar questions