What does fp point to in the program ?
#include<stdio.h> int main() { FILE *fp; fp=fopen("trial", "r"); return 0; }
Answer: Option B
Explanation:
The fp is a structure which contains a char pointer which points to the first character of a file.