Home / C Programming / Input / Output :: Discussion

Discussion :: Input / Output

  1. stderr, stdin, stdout are FILE pointers

  2. A.
    Yes
    B.
    No

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Yes, these will be declared like

    The corresponding stdio.h variable is FILE* stdin;

    The corresponding stdio.h variable is FILE* stdout;

    The corresponding stdio.h variable is FILE* stderr;


Be The First To Comment