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
  • Qt Creator
  • Code::Blocks
  • Eclipse
  • Netbeans
  • CLion

Compilers

  • g++ (On Windows with MSYS2)
  • 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.1618517782.txt.gz · Last modified: 2021/04/15 20:16 by nanodano