Examveda
Examveda

What will be the output of the following C code?
#include <stdio.h>
int main()
{
    FILE *fp = stdin;
    int n;
    fprintf(fp, "%d", 45);
}

A. Compilation error

B. 45

C. Nothing

D. Depends on the standard

Answer: Option C


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output