C Programming and Technical Programming Basics

What is the use of typedef?

Read Solution (Total 2)

C Other Question

What are register variables? What are the advantage of
using register variables?
Which files will get closed through the fclose() in the following program?
#include
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;
}
Options
1) "A.C" "B.C" "C.C"
2) "B.C" "C.C"
3) "A.C"
4) Error in fclose()