1.

What will be the output of the following C code?#include <stdio.h> int main() { FILE *fp = stdout; int m; fprintf(fp, "%d ", 55); fflush(stdout); fprintf(stderr, "%d", 85); return 0; }

A. Nothing
B. 85 55
C. Compilation Error
D. 55 85
E. 85
Answer» E. 85


Discussion

No Comment Found