User Tools

Site Tools


programming:cpp

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
programming:cpp [2021/04/15 19:17]
nanodano created
programming:cpp [2021/06/09 00:55] (current)
nanodano
Line 1: Line 1:
 ====== C++ Programming ====== ====== C++ Programming ======
  
-C++ is a language based on CIf you want C programming, see: [[:programming:c|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.+If you are looking for the C programming language, see: [[:programming:c|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. 
 + 
 +===== Blog posts ===== 
 + 
 +See: https://www.devdungeon.com/content/c
  
 ===== Editors ===== ===== Editors =====
  
-vim +  * vim 
-emacs +  emacs 
-Visual Studio Code +  * gedit 
-Visual Studio +  * Geany 
-Code::Blocks +  * Visual Studio Code 
-Eclipse +  Visual Studio 
-Netbeans +  * XCode 
-CLion+  * Qt Creator 
 +  * Code::Blocks 
 +  Eclipse 
 +  Netbeans 
 +  CLion
  
  
 ===== Compilers ===== ===== Compilers =====
  
-g++ +  * g++ (On Windows with MSYS2) 
-clang +  clang 
-TurboC++ (DOS)+  TurboC++ (DOS) 
 + 
 +==== Debuggers ==== 
 + 
 +  * gdb
  
 ===== Build tools ===== ===== Build tools =====
  
-Make +  * Make 
-CMake +  CMake 
-Rake +  Rake 
-Visual Studio +  Visual Studio 
-XCode +  XCode 
-Eclipse+  Eclipse
  
 ===== Code examples ===== ===== Code examples =====
  
-==== Hello world ====+See https://github.com/devdungeon/cookbook/
  
-<code cpp hello.cpp> 
-#include <iostream> 
  
-int main() { 
-  std::cout << "Hello, world!" << std::endl; 
-} 
-</code> 
programming/cpp.1618514238.txt.gz · Last modified: 2021/04/15 19:17 by nanodano