aboutsummaryrefslogtreecommitdiff
path: root/C++
diff options
context:
space:
mode:
Diffstat (limited to 'C++')
-rwxr-xr-xC++/How to C++ (02.12.2017)/How to c++/How to c++.cbp59
-rwxr-xr-xC++/How to C++ (02.12.2017)/How to c++/How to c++.depend4
-rwxr-xr-xC++/How to C++ (02.12.2017)/How to c++/How to c++.layout15
-rwxr-xr-xC++/How to C++ (02.12.2017)/How to c++/main.cpp13
-rwxr-xr-xC++/How to C++ (02.12.2017)/How to c++/test02.cpp12
-rwxr-xr-xC++/How to C++ (02.12.2017)/Meh/Meh.cbp43
-rwxr-xr-xC++/How to C++ (02.12.2017)/Meh/Meh.depend4
-rwxr-xr-xC++/How to C++ (02.12.2017)/Meh/Meh.layout10
-rwxr-xr-xC++/How to C++ (02.12.2017)/Meh/main.cpp8
9 files changed, 168 insertions, 0 deletions
diff --git a/C++/How to C++ (02.12.2017)/How to c++/How to c++.cbp b/C++/How to C++ (02.12.2017)/How to c++/How to c++.cbp
new file mode 100755
index 0000000..579e824
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/How to c++/How to c++.cbp
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<CodeBlocks_project_file>
+ <FileVersion major="1" minor="6" />
+ <Project>
+ <Option title="How to c++" />
+ <Option pch_mode="2" />
+ <Option compiler="gcc" />
+ <Build>
+ <Target title="Debug">
+ <Option output="bin/Debug/How to c++" prefix_auto="1" extension_auto="1" />
+ <Option object_output="obj/Debug/" />
+ <Option type="1" />
+ <Option compiler="gcc" />
+ <Compiler>
+ <Add option="-g" />
+ </Compiler>
+ </Target>
+ <Target title="Release">
+ <Option output="bin/Release/How to c++" prefix_auto="1" extension_auto="1" />
+ <Option object_output="obj/Release/" />
+ <Option type="1" />
+ <Option compiler="gcc" />
+ <Compiler>
+ <Add option="-O2" />
+ </Compiler>
+ <Linker>
+ <Add option="-s" />
+ </Linker>
+ </Target>
+ <Target title="Test 02">
+ <Option output="bin/Test 02/How to c++" prefix_auto="1" extension_auto="1" />
+ <Option working_dir="bin/Test 02/" />
+ <Option object_output="obj/Test 02/" />
+ <Option type="1" />
+ <Option compiler="gcc" />
+ <Compiler>
+ <Add option="-O2" />
+ </Compiler>
+ <Linker>
+ <Add option="-s" />
+ </Linker>
+ </Target>
+ </Build>
+ <Compiler>
+ <Add option="-Wall" />
+ <Add option="-fexceptions" />
+ </Compiler>
+ <Unit filename="main.cpp" />
+ <Unit filename="test02.cpp">
+ <Option target="Test 02" />
+ </Unit>
+ <Extensions>
+ <code_completion />
+ <envvars />
+ <debugger />
+ <lib_finder disable_auto="1" />
+ </Extensions>
+ </Project>
+</CodeBlocks_project_file>
diff --git a/C++/How to C++ (02.12.2017)/How to c++/How to c++.depend b/C++/How to C++ (02.12.2017)/How to c++/How to c++.depend
new file mode 100755
index 0000000..97e16c9
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/How to c++/How to c++.depend
@@ -0,0 +1,4 @@
+# depslib dependency file v1.0
+1512233516 source:e:\all projects\how to c++\how to c++\main.cpp
+ <iostream>
+
diff --git a/C++/How to C++ (02.12.2017)/How to c++/How to c++.layout b/C++/How to C++ (02.12.2017)/How to c++/How to c++.layout
new file mode 100755
index 0000000..8b1f267
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/How to c++/How to c++.layout
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<CodeBlocks_layout_file>
+ <FileVersion major="1" minor="0" />
+ <ActiveTarget name="Debug" />
+ <File name="main.cpp" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+ <Cursor>
+ <Cursor1 position="86" topLine="0" />
+ </Cursor>
+ </File>
+ <File name="test02.cpp" open="1" top="1" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+ <Cursor>
+ <Cursor1 position="114" topLine="0" />
+ </Cursor>
+ </File>
+</CodeBlocks_layout_file>
diff --git a/C++/How to C++ (02.12.2017)/How to c++/main.cpp b/C++/How to C++ (02.12.2017)/How to c++/main.cpp
new file mode 100755
index 0000000..04563ab
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/How to c++/main.cpp
@@ -0,0 +1,13 @@
+#include <iostream>
+using namespace std;
+int main()
+{
+ string name;
+ cout << "Hello! \n My name is CMD. \n What is yours? ";
+ cin >> name;
+ cout << "Oh, nice to meet you " << name;
+
+ return 0;
+
+}
+
diff --git a/C++/How to C++ (02.12.2017)/How to c++/test02.cpp b/C++/How to C++ (02.12.2017)/How to c++/test02.cpp
new file mode 100755
index 0000000..6d1a18d
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/How to c++/test02.cpp
@@ -0,0 +1,12 @@
+#include <iostream>
+using namespace std;
+int main()
+{
+ string name;
+ cout << "Hello! \n My name is Jeff. \n What is yours? ";
+ cin >> name;
+ cout << "Oh, nice to meet you " << name;
+
+ return 0
+
+}
diff --git a/C++/How to C++ (02.12.2017)/Meh/Meh.cbp b/C++/How to C++ (02.12.2017)/Meh/Meh.cbp
new file mode 100755
index 0000000..d84c450
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/Meh/Meh.cbp
@@ -0,0 +1,43 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<CodeBlocks_project_file>
+ <FileVersion major="1" minor="6" />
+ <Project>
+ <Option title="Meh" />
+ <Option pch_mode="2" />
+ <Option compiler="gcc" />
+ <Build>
+ <Target title="Debug">
+ <Option output="bin/Debug/Meh" prefix_auto="1" extension_auto="1" />
+ <Option object_output="obj/Debug/" />
+ <Option type="1" />
+ <Option compiler="gcc" />
+ <Compiler>
+ <Add option="-g" />
+ </Compiler>
+ </Target>
+ <Target title="Release">
+ <Option output="bin/Release/Meh" prefix_auto="1" extension_auto="1" />
+ <Option object_output="obj/Release/" />
+ <Option type="1" />
+ <Option compiler="gcc" />
+ <Compiler>
+ <Add option="-O2" />
+ </Compiler>
+ <Linker>
+ <Add option="-s" />
+ </Linker>
+ </Target>
+ </Build>
+ <Compiler>
+ <Add option="-Wall" />
+ <Add option="-fexceptions" />
+ </Compiler>
+ <Unit filename="main.cpp" />
+ <Extensions>
+ <code_completion />
+ <envvars />
+ <debugger />
+ <lib_finder disable_auto="1" />
+ </Extensions>
+ </Project>
+</CodeBlocks_project_file>
diff --git a/C++/How to C++ (02.12.2017)/Meh/Meh.depend b/C++/How to C++ (02.12.2017)/Meh/Meh.depend
new file mode 100755
index 0000000..1b5c285
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/Meh/Meh.depend
@@ -0,0 +1,4 @@
+# depslib dependency file v1.0
+1512233808 source:e:\all projects\how to c++\meh\main.cpp
+ <iostream>
+
diff --git a/C++/How to C++ (02.12.2017)/Meh/Meh.layout b/C++/How to C++ (02.12.2017)/Meh/Meh.layout
new file mode 100755
index 0000000..158b7c7
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/Meh/Meh.layout
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
+<CodeBlocks_layout_file>
+ <FileVersion major="1" minor="0" />
+ <ActiveTarget name="Debug" />
+ <File name="main.cpp" open="1" top="1" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
+ <Cursor>
+ <Cursor1 position="55" topLine="0" />
+ </Cursor>
+ </File>
+</CodeBlocks_layout_file>
diff --git a/C++/How to C++ (02.12.2017)/Meh/main.cpp b/C++/How to C++ (02.12.2017)/Meh/main.cpp
new file mode 100755
index 0000000..f13ac21
--- /dev/null
+++ b/C++/How to C++ (02.12.2017)/Meh/main.cpp
@@ -0,0 +1,8 @@
+#include <iostream>
+using namespace std;
+
+int main()
+{
+ cout << "Hello everyone! \n How are you doing today?";
+ return 0;
+}