commit c8fc40eb017950c6c98ca098a126a8ec305d702a Author: hendrik Date: Sat Jun 16 11:48:30 2018 +0200 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/eclipse-workspace/C_CPP/C_Praktikum/.cproject b/eclipse-workspace/C_CPP/C_Praktikum/.cproject new file mode 100644 index 0000000..e216538 --- /dev/null +++ b/eclipse-workspace/C_CPP/C_Praktikum/.cproject @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eclipse-workspace/C_CPP/C_Praktikum/.gitignore b/eclipse-workspace/C_CPP/C_Praktikum/.gitignore new file mode 100644 index 0000000..3df573f --- /dev/null +++ b/eclipse-workspace/C_CPP/C_Praktikum/.gitignore @@ -0,0 +1 @@ +/Debug/ diff --git a/eclipse-workspace/C_CPP/C_Praktikum/.project b/eclipse-workspace/C_CPP/C_Praktikum/.project new file mode 100644 index 0000000..3b7fe19 --- /dev/null +++ b/eclipse-workspace/C_CPP/C_Praktikum/.project @@ -0,0 +1,27 @@ + + + C_Praktikum + + + + + + org.eclipse.cdt.managedbuilder.core.genmakebuilder + clean,full,incremental, + + + + + org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder + full,incremental, + + + + + + org.eclipse.cdt.core.cnature + org.eclipse.cdt.core.ccnature + org.eclipse.cdt.managedbuilder.core.managedBuildNature + org.eclipse.cdt.managedbuilder.core.ScannerConfigNature + + diff --git a/eclipse-workspace/C_CPP/C_Praktikum/.settings/language.settings.xml b/eclipse-workspace/C_CPP/C_Praktikum/.settings/language.settings.xml new file mode 100644 index 0000000..6c9259c --- /dev/null +++ b/eclipse-workspace/C_CPP/C_Praktikum/.settings/language.settings.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/eclipse-workspace/C_CPP/C_Praktikum/src/C_Praktikum.cpp b/eclipse-workspace/C_CPP/C_Praktikum/src/C_Praktikum.cpp new file mode 100644 index 0000000..79c4578 --- /dev/null +++ b/eclipse-workspace/C_CPP/C_Praktikum/src/C_Praktikum.cpp @@ -0,0 +1,15 @@ +//============================================================================ +// Name : C_Praktikum.cpp +// Author : +// Version : +// Copyright : Your copyright notice +// Description : Hello World in C++, Ansi-style +//============================================================================ + +#include +using namespace std; + +int main() { + cout << "!!!Hello World!!!" << endl; // prints !!!Hello World!!! + return 0; +}