72.
The syntax of the scanf() is scanf("control string ", arg1,arg2,arg3,....,argn); the prototype of control string is

75.
What will be the output of the following C code considering user typed jkl?
#include <stdio.h>
int main()
{
    char n[20];
    fgets(n, 19, stdin);
    ungetc(n[0], stdin);
    printf("%s\n", n);
    return 0;
}

77.
Which is true about isupper(c), where c is an int that can be represented as an unsigned?
char or EOF.isupper(c) returns

Read More Section(File Input Output)

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