Consider the following C program: #include void fX(); int main() fX(); return 0; void fX() char a; if((a=getchar()) != ' ') fX(); if(a != ' ') putchar(a); Assume that the input to the program from the command line is 1234 followed by a newline character. Which one of the following statements is CORRECT?
Topic-wise GATE CS PYQs with verified steps
