Find the output for the following C program#include<stdio.h>void main(void);static int i=50;int print(int i);void main(void){static int i=100;while(print(i)){printf("%dn",i);i--;}}int print(int x){static int i=2;return(i--);}

Showing Answers 1 - 1 of 1 Answers

Karthik

  • Jul 18th, 2006
 

100

99

  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