你再main退出的return前打个断点,F5运行,如果还没显示,找个会用的人当面给你演示一遍,估计你基本的东西一点也不知道,才发现不了自己哪做错了。
分别试下下面的代码,如果都不行果断找身边的人问问,也有可能是安装的vc2010不对
#include
int main()
{
printf("hello!\n");
getchar(); //等待输入回车再结束
return 0;
}
#include
#include
int main()
{
printf("hello!\n");
system("pause"); //用于防止闪退
return 0;
}