C++: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „Dateierweiterung .cpp“) |
|||
(23 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
− | Dateierweiterung .cpp | + | ==Prozess== |
+ | |||
+ | ===Schreiben des Programms=== | ||
+ | |||
+ | ====Hello World==== | ||
+ | |||
+ | #include <iostream.h> | ||
+ | int main() | ||
+ | { | ||
+ | cout < „Hello World!n“; | ||
+ | return 0; | ||
+ | } | ||
+ | |||
+ | ====Dateierweiterung==== | ||
+ | |||
+ | .cpp | ||
+ | |||
+ | ===Kompilieren des Quellcodes=== | ||
+ | |||
+ | ====[https://de.wikibooks.org/wiki/C%2B%2B-Programmierung:_Compiler Compiler]==== | ||
+ | |||
+ | * [https://de.wikipedia.org/wiki/GNU_Compiler_Collection GCC] | ||
+ | * [http://www.openwatcom.org/ Open Watcom] | ||
+ | * [https://www.digitalmars.com/ Digital Mars C++] | ||
+ | |||
+ | |||
+ | * [https://de.wikipedia.org/wiki/Visual_C%2B%2B Visual C++] (siehe [[Visual Studio]]) | ||
+ | * [https://de.wikipedia.org/wiki/C%2B%2BBuilder Borland C++Builder] | ||
+ | |||
+ | * [http://anjuta.org/ Anjuta DevStudio] | ||
+ | * [https://www.kdevelop.org/ KDevelop] | ||
+ | |||
+ | * [http://www.codeblocks.org/ Code::Blocks] | ||
+ | * [https://netbeans.org/ NetBeans] | ||
+ | * [https://www.eclipse.org/ Eclipse] | ||
+ | * [https://www.qt.io/download Qt Creator] | ||
+ | |||
+ | Objektdatei .OBJ | ||
+ | |||
+ | ===Linken des Programms=== | ||
+ | |||
+ | Bibliotheken | ||
+ | |||
+ | Klassen | ||
+ | |||
+ | ===Ausführen des Programms=== | ||
+ | |||
+ | .exe | ||
+ | |||
+ | ==Videos== | ||
+ | |||
+ | * https://www.youtube.com/watch?v=932bMcFrVMM |
Aktuelle Version vom 18. Juli 2018, 22:51 Uhr
Prozess
Schreiben des Programms
Hello World
#include <iostream.h> int main() { cout < „Hello World!n“; return 0; }
Dateierweiterung
.cpp
Kompilieren des Quellcodes
Compiler
Objektdatei .OBJ
Linken des Programms
Bibliotheken
Klassen
Ausführen des Programms
.exe