标签:vs2010首个程序
用VS2010写下的第一个程序// CProject2.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
// 以后就在这里添加你需要编译的代码
// 在编译之前,我们必须为这个项目工作设置正确的编译属性
// 下面开始写一个程序
printf("my first c !");
getchar(); // 这里要注意添加这个函数防止你的程序直接退出而无法看到结果
return 0;
}
在VS2010运行结果:my first c !
标签:vs2010首个程序
原文地址:http://blog.51cto.com/13555061/2120929