aboutsummaryrefslogtreecommitdiff
path: root/2b.cpp
diff options
context:
space:
mode:
authorJordanHT-OIT <[email protected]>2021-10-04 20:40:05 -0700
committerGitHub <[email protected]>2021-10-04 20:40:05 -0700
commit071ac4a3242476fededfa74e40c649c60d546d61 (patch)
treea8482e645b66277ed99b2d38f488220d9ad10e16 /2b.cpp
parentAdd online IDE url (diff)
downloadcst116-lab1-jordanht-oit-071ac4a3242476fededfa74e40c649c60d546d61.tar.xz
cst116-lab1-jordanht-oit-071ac4a3242476fededfa74e40c649c60d546d61.zip
Manual push due to VS2019 configuration issueHEADmain
Diffstat (limited to '2b.cpp')
-rw-r--r--2b.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/2b.cpp b/2b.cpp
new file mode 100644
index 0000000..82c00a3
--- /dev/null
+++ b/2b.cpp
@@ -0,0 +1,14 @@
+//Lab work by Jordan Harris-Toovy for OIT's CST 116-01P course. Date: Oct 4, 2021
+//This work is based on material from the book 'C++ Learn by doing' edition 201901 by Todd Breedlove, Troy Scevers, and Randal Albert
+//This code is made for part 2b of lab 1
+
+#include <iostream>
+
+int main() {
+ std::cout << "Modified version of original C program"
+ << " (by Kernighan & Ritchie) \n";
+
+ std::cout << "Hello world!";
+
+ return 0;
+} \ No newline at end of file