//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 int main() { std::cout << "Modified version of original C program" << " (by Kernighan & Ritchie) \n"; std::cout << "Hello world!"; return 0; }