WHAT IS THE OUTPUT OF THE FOLLOWING C CODE?
#include stdio.h
int main() {
FILE *fp;
int c;
fp = fopen(__FILE__,"r");
do {
c = getc(fp);
putchar(c);
}
while(c != EOF);
fclose(fp);
return 0;
}


Posted on by