

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> #include <stdlib.h> int main() { FILE *fp = stdout; int num; fprintf(fp, "%d", 102); } |
A. | Nothing |
B. | Compilation Error |
C. | Garbage value |
D. | 102 |
E. | None of these |
Answer» E. None of these | |