vc6.0生成exe文件_vc6.0生成exe文件打不开
问题补充:
只是闪了一下就没了
补充:#include<stdio.h>int main()printf("hello\n"); return 0;}最佳答案
#include<stdio.h>
#include <stdlib.h> //加个头文件
int main()
{
//这里少个{
printf("hello\n");
system("pause"); //让输出暂停下
return 0; //中文的分号
}
最佳答案由网友 whoami1978 提供
其他回答
暂无其它回答!