diff options
Diffstat (limited to '2b.cpp')
| -rw-r--r-- | 2b.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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 |