我无法理解这段代码的输出?
int main()
{
FILE* f, *f1;
f = fopen("mytext", "w");
if ((f1 = fopen("mytext", "w")) == 0)
printf("unable\n");
fprintf(f, "hello\n");
fprintf(f1, "hi\n");
return 0;
}
输出是mytext 文件中的hello。为什么不写?“无法”不会打印到stdout。