我正在使用esc ANSI代码,所以我需要通过终端运行程序。当我尝试使用fprintf
并从控制台执行该程序时,文本文件中未保存任何内容。直接从Xcode运行程序,它将文本保存在文件中。
int main()
{
int write;
FILE *file;
file = fopen("frucht.txt", "w+");
gotoxy(4, 10);
scanf("%d", &write);
fprintf(file,"%d", write);
fclose(file);
return(0);
}