#include <stdio.h>
#include <stdlib.h>
int main(int argc,char *argv[])
{
system("PAUSE");
return 0;
}
在我编译程序后,我点击运行。它仍然提示我“项目未编译”为什么?对不起,我是c的新手。
我正在使用dev c++
,在xp上, ctrl+F9
编译然后ctrl+F10
运行它显示 project is not compiled
#include <stdio.h>
#include <stdlib.h>
int main(int argc,char *argv[])
{
system("PAUSE");
return 0;
}
在我编译程序后,我点击运行。它仍然提示我“项目未编译”为什么?对不起,我是c的新手。
我正在使用dev c++
,在xp上, ctrl+F9
编译然后ctrl+F10
运行它显示 project is not compiled