1.

Point out the error in the program? #include #include int main() { unsigned char; FILE *fp; fp=fopen("trial", "r"); if(!fp) { printf("Unable to open file"); exit(1); } fclose(fp); return 0; }

A. Error: in unsigned char statement
B. Error: unknown file pointer
C. No error
D. None of above
Answer» D. None of above


Discussion

No Comment Found

Related MCQs