#include <stdio.h>
int main()
{
FILE *F;
F=fopen("C:\test.txt", "wt");
fprintf(F, "Sample text");
fclose(F);
return 0;
}
Проблема при создании файла
Код:
Код:
...
FILE *F;
F=fopen("C:[COLOR="Red"]\\[/COLOR]test.txt", "wt");
fprintf(F, "Sample text");
fclose(F);
return 0;
...
FILE *F;
F=fopen("C:[COLOR="Red"]\\[/COLOR]test.txt", "wt");
fprintf(F, "Sample text");
fclose(F);
return 0;
...
Вот так все компилируется без твоей ошибки.