In C language, FILE is of which data type ?
2025
In C language, FILE is of which data type ?
Answer: C. struct — In C programming, FILE is a structure type defined in the stdio.h header file. It acts as an opaque data type used to represent a stream of input/output…
- A.
int
- B.
char*
- C.
struct
- D.
none of the above
Attempted by 602 students.
Show answer & explanation
Correct answer: C
In C programming, FILE is a structure type defined in the stdio.h header file. It acts as an opaque data type used to represent a stream of input/output operations.
Loading lesson…