Computer Science, asked by varshamali2311, 4 months ago

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", "1");
fclose(fp, fs, ft);
return 0;
}​

Answers

Answered by kbinimesh
0

Answer:

all

Explanation:

all the file will. close in order u have passed the argument.

Similar questions