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

69.
What will be the output of the following C code?
#include <stdio.h>
int main()
{
    printf("%d\n", srand(9000));
    return 0;
}

70.
What are the Properties of the first argument of a printf() functions?

Read More Section(File Input Output)

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