如何在终端中使用fprintf(Mac OS)

时间:2019-03-01 22:44:29

标签: c macos printf

我正在使用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);
}

0 个答案:

没有答案