VC的问题,帮帮忙
#include "iostream.h"
#include "stdio.h"
#include "stdlib.h"
#include "conio.h"
main()
{
FILE *open=fopen("test.htm","r");
FILE *save=fopen("test.txt","w+");
int flag=0;
while(!feof(open))
{
char ch;
fscanf(open,"%c",&ch);
switch(ch)
{
case 'u':
fscanf(open,"%c",&ch);
fprintf(save,"%c",ch);
fscanf(open,"%c",&ch);
fprintf(save,"%c",ch);
fprintf(save," ");
break;
case '%':
fprintf(save," ",ch);
break;
default:fprintf(save,"%c",ch);
}
}
fclose(open);
fclose(save);
}
编译以后,就报了这么一个错误,不知道怎么回事,重装了VC也没有用,
f:\vc\新建文件夹\convert.cpp(0) : fatal error C1001: INTERNAL COMPILER ERROR
(compiler file 'msc1.cpp', line 1786)
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information