开发工具,暂定为dev-cpp,因为小巧,安装不像vc 那么麻烦.
1. 下载并安装DEV-C++
http://sourceforge.net/projects/dev-cpp/
这里有两个安装文件:devcpp-4.9.9.2_nomingw_setup.exe和devcpp-4.9.9.2_setup.exe。只需下载后者,也就是大的那个。
安装,注意:安装目录中不能有空格。也就是说,不要装在c:program files下。安装很easy。
2,写一个小程序,输入first
#include<stdio.h>
int main()
{
printf("first");
return 0;
}
3.编译和运行.生成了.exe 文件,呵呵,挺有意思.点击就可运行.