From c8fc40eb017950c6c98ca098a126a8ec305d702a Mon Sep 17 00:00:00 2001 From: hendrik Date: Sat, 16 Jun 2018 11:48:30 +0200 Subject: [PATCH] first commit --- README.md | 0 eclipse-workspace/C_CPP/C_Praktikum/.cproject | 120 ++++++++++++++++++ .../C_CPP/C_Praktikum/.gitignore | 1 + eclipse-workspace/C_CPP/C_Praktikum/.project | 27 ++++ .../.settings/language.settings.xml | 25 ++++ .../C_CPP/C_Praktikum/src/C_Praktikum.cpp | 15 +++ 6 files changed, 188 insertions(+) create mode 100644 README.md create mode 100644 eclipse-workspace/C_CPP/C_Praktikum/.cproject create mode 100644 eclipse-workspace/C_CPP/C_Praktikum/.gitignore create mode 100644 eclipse-workspace/C_CPP/C_Praktikum/.project create mode 100644 eclipse-workspace/C_CPP/C_Praktikum/.settings/language.settings.xml create mode 100644 eclipse-workspace/C_CPP/C_Praktikum/src/C_Praktikum.cpp 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; +}