开始学习C++
今天开始正式学习C++和Visual Studio的相关内容,我会在这个博客中记录下学习过程中的点点滴滴。
主要入门书籍 | 《Visual C++ 2005入门经典中文版》 |
操作系统 | Windows XP with Service Pack 3 与 Windows 7 |
开发环境 | Microsoft Visual Studio 2010 |
写博软件 | Windows Live Writer 14.0.8117.416 与 15.4.3508.1109 |
代码着色插件 | Windows Live Writer Source Code plugin for SyntaxHighlighter v1.1 |
抓图软件 | TechSmith SnagIt 10.0.0.788 |
录像软件 | TechSmith Camtasia Studio 7.1.0.1631 |
下面是C++代码着色测试:
#include <stdio.h> #include <iostream> int main() { std::cout << "Hello world!" << std::endl; return 0; }