1
2
3
4
5
6
7
int a, b, sum;
cin >> a;
cin >> b;
sum = a + b;
cout << sum << endl;
| IDE | Platform | Console programs |
|---|---|---|
| Code::blocks | Windows/Linux/MacOS | Compile console programs using Code::blocks |
| Visual Studio Express | Windows | Compile console programs using VS Express 2013 |
| Dev-C++ | Windows | Compile console programs using Dev-C++ |
| Compiler | Platform | Command |
|---|---|---|
| GCC | Linux, among others... | g++ -std=c++0x example.cpp -o example_program |
| Clang | OS X, among others... | clang++ -std=c++11 -stdlib=libc++ example.cpp -o example_program |