我用的是下面这个代码打开一个名字为“input”和“output”的.c文件,
每次运行不成功,经过我调试,发现是到了第一个文件的打开就过不去了,
直接exit(1),可是我发现这里好像也没有什么问题,各位大神看看,是我眼拙没看到,还是我错了,或者是小人才疏学浅没弄对。。。
void convert()
{
FILE* in = fopen(INFILE, "r");//INFILE被宏定义为"input.c"
if (NULL == in)
{
perror("fopen");
exit(1);
}
FILE* out = fopen(OUTFILE, "w");//OUTFILE被宏定义为"output.c"
if (NULL == out)
{
perror("fopen");
exit(2);
}
}