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