self
Maths Puzzle
What will this program display if the zzz.c exixts in C:TCSAMPLE subdirectory?#includevoid main(){FILE *fp;int ch;fp = fopen("C:TCSAMPLEZZZ.C","t");while((ch = fgetc(fp))!=-1)printf("%c",ch);
}
Read Solution (Total 0)
self Other Question