Câu hỏi 207331 - Kỹ thuật lập trình cơ sở - IT01
Đoạn chương trình sau thực hiện công việc gì?
#include <stdio.h>
void main()
{
FILE *file_pointer;
char file_character;
file_pointer = fopen("MYFILE.DTA","r");
while((file_character = getc(file_pointer)) != EOF)
printf("%c", file_character);
fclose(file_pointer);
}

















