RUN FAILED退出值-1 073 741 819 - 我的代码出了什么问题?

时间:2012-11-15 17:36:19

标签: c gcc netbeans mingw

我正在尝试制作一个秒表程序,它会将czas写入file.txt。我今天开始学习C,所以请对我很宽容,如果这是一个愚蠢的问题,但编译器不会丢失任何错误,NetBeans也不会显示任何感叹号。有我的代码:

#include <windows.h>
#define sleep(x) Sleep(1000 * x)

#include <stdio.h>
#include <stdlib.h>

int a = 0;
int czas = 0;
int main (void)
{
    FILE *file;
    while (a < 30) { /*repeats only 30 times*/
        a = a + 1; /*increases the counter for while loop*/
        file = fopen("file.txt","w"); /*opens file.txt for writing*/
        fprintf(file,"%s", czas); /*writes czas to file.txt*/
        fclose(file); /*closes file.txt to save*/ 
        czas = czas + 1; /*increases czas for writing to file*/
    }
 return 0;
}

有人能帮助我吗?

1 个答案:

答案 0 :(得分:3)

%s需要char*作为参考参数。

您想写出int,期望%d

有关详细信息,请参阅man fprintf


如果您希望在新行上使用czas的每个新值,可以在fprintf()语句中指定,如下所示:

fprintf(file,"%d\n", czas);