✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Giả sử tập tin “try.c” có nội dung là: “This is Nagpur “. Kết quả trên màn hình sau khi thực thi đoạn mã lệnh sau là gì?
#include<stdio.h>
int main()
{
FILE *fp;
char ch, str[7];
fp=fopen("try.c", "r");
fseek(fp, 9L, SEEK_CUR);
fgets(str, 5, fp);
puts(str);
return 0;
}