Given the following C programfunc(int *i, int*j){*i=*i * *i;*j=*j* *j;}main(){ int i = 5, j = 2;func(&i,&j);printf("%d %d", i, j);}

Showing Answers 1 - 2 of 2 Answers

hari

  • Aug 2nd, 2005
 

Output: 
i=25 and j=4

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions