Ⅰ 怎样清除visual studio 2010编译程序后的文件
编译不会产生这么大的文件的,是不是你调试时IntelliTrace打开了,关闭IntelliTrace就可以了,Win7的话在C:\ProgramData\Microsoft Visual Studio\10.0\TraceDebugging下,xp忘了,搜索TraceDebugging这个文件夹应该能找到。
Ⅱ C语言程序编译运行后无法删除可执行文件
1、编译后直接双击运行的,非GUI的程序一般不需要等待用户,运行完了当然自动退出了,执行main()函数末尾返回。如果要是想停一下等待看结果,main()函数末尾加一句system("pause");2、例如
#include<stdio.h>
intmain()
{
printf("HelloWorld! ");
system("pause");
return0;
}