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