1.

What will be the output of the program?

#include<stdio.h>
int func1(int); int main()
{ int k=35; k = func1(k=func1(k=func1(k))); printf("k=%d n", k); return 0;
}
int func1(int k)
{ k++; return k;
}

A. k=35
B. k=36
C. k=37
D. k=38
Answer» E.


Discussion

No Comment Found