This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
programming:cpp [2021/04/15 20:16] nanodano |
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, | + | If you are looking for the C programming |
| + | |||
| + | ===== Blog posts ===== | ||
| + | |||
| + | See: https:// | ||
| ===== Editors ===== | ===== Editors ===== | ||
| Line 7: | Line 11: | ||
| * vim | * vim | ||
| * emacs | * emacs | ||
| + | * gedit | ||
| + | * Geany | ||
| * Visual Studio Code | * Visual Studio Code | ||
| * Visual Studio | * Visual Studio | ||
| + | * XCode | ||
| * Qt Creator | * Qt Creator | ||
| * Code:: | * Code:: | ||
| Line 21: | Line 28: | ||
| * clang | * clang | ||
| * TurboC++ (DOS) | * TurboC++ (DOS) | ||
| + | |||
| + | ==== Debuggers ==== | ||
| + | |||
| + | * gdb | ||
| ===== Build tools ===== | ===== Build tools ===== | ||
| Line 33: | Line 44: | ||
| ===== Code examples ===== | ===== Code examples ===== | ||
| - | ==== Hello world ==== | + | See https:// |
| - | <code cpp hello.cpp> | ||
| - | #include < | ||
| - | int main() { | ||
| - | std::cout << " | ||
| - | } | ||
| - | </ | ||