Which files will get closed through the fclose() in the following program?#include<stdio.h> int main() { FILE *fs, *ft, *fp; fp = fopen("A.C", "r"); fs = fopen("B.C", "r"); ft = fopen("C.C", "r"); fclose(fp, fs, ft); return 0; }
Download the Study24x7 App, so you can connect and collaborate.