Q61
What will be the output of the following C code if the input given to the code shown below is "examveda"? #include #define NL ' ' void main() void f(void); printf("enter the word "); f(); void f(void) char c; if((c=getchar())!=NL) f(); printf("%c",c); return;
A.
examveda
B.
infinite loop
C.
adevmaxe
AnswerD.
maxeadev
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board