54.
What will be the output of the following C code?
#include <stdio.h>
#include <ctype.h>
int main()
{
    char i = 9;
    if (isdigit(i))
        printf("digit\n");
    else
        printf("not digit\n");
        return 0;
}

Read More Section(File Input Output)

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