blob: 82c00a37ad708c13f7a42d78bab20ed268e2ae65 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}
|