OOPCPP

Learn C++ Programming Language

This project is maintained by cugwhp

Introduction

1. Lecture

2. References

3. Exercises

4. Sample code

// The first program - Hello World.
#include <iostream>
int main()		//主函数
{
  std::cout << "Hello World." << std::endl;
  return 0;
}

5. Quotes

Bad programming is easy. Even Dummies can learn it in 21days.
Good programming requires thought, but everyone can do it and 
everyone can experience the extreme satisfaction that comes with it.
                                      by Matthias Felleisen

返回主目录 | 下一章 C++语言特性