Home » C Programming » File I/O » Question
  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);
    }
    1. 55
    2. Compilation error
    3. Runtime Error
    4. Nothing
    5. None of these
Correct Option: D

Nothing



Your comments will be displayed only after manual approval.