User Tools

Site Tools


programming:cpp

This is an old revision of the document!


C++ Programming

C++ is a language based on CIf you want C programming, see: C Programming. C++ is a much more complex language than C. C++ is still highly portable, but not as much as C. C++ has the kitchen sink.

Editors

vim emacs Visual Studio Code Visual Studio Code::Blocks Eclipse Netbeans CLion

Compilers

g++ clang TurboC++ (DOS)

Build tools

Make CMake Rake Visual Studio XCode Eclipse

Code examples

Hello world

hello.cpp
#include <iostream>
 
int main() {
  std::cout << "Hello, world!" << std::endl;
}
programming/cpp.1618514238.txt.gz · Last modified: 2021/04/15 19:17 by nanodano