Home » C Programming » Input / Output

What does fp point to in the program? #include int main() { FILE *fp; fp=fopen("trial", "r"); return 0; }

Correct Answer: A structure which contains a char pointer which points to the first character of a file.

Explanation:

The fp is a structure which contains a char pointer which points to the first character of a file.

← Previous Question Next Question→

More Questions from Input / Output

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion