45.
What is the use of getchar()?

46.
What will be the output of the following C code?
#include <stdio.h>
#include <stdarg.h>
int f(...);
int main()
{
    char c = 97;
    f(c);
    return 0;
}
int f(...)
{
    va_list li;
    char c = va_arg(li, char);
    printf("%c\n", c);
}

Read More Section(File Input Output)

Each Section contains maximum 100 MCQs question on File Input Output. To get more questions visit other sections.