summaryrefslogtreecommitdiff
path: root/CST116F2021-Lab5
diff options
context:
space:
mode:
authorBensProgramma <[email protected]>2021-11-03 05:55:39 -0700
committerGitHub <[email protected]>2021-11-03 05:55:39 -0700
commitd03559b2883377657e0db7bd456a83696dfab0d4 (patch)
tree77d9a25c19dca03c290de0899cf1acb75eb99108 /CST116F2021-Lab5
parentDelete README.md (diff)
downloadcst116-lab5-bensprogramma-master.tar.xz
cst116-lab5-bensprogramma-master.zip
Update CST116F2021-Lab5Exercises_Schroeder.cppHEADmaster
deleted some comments
Diffstat (limited to 'CST116F2021-Lab5')
-rw-r--r--CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp b/CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp
index 2bdb3ab..73d6a86 100644
--- a/CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp
+++ b/CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp
@@ -21,26 +21,3 @@ int main()
-
-/*
-#include<iostream>
-using namespace std;
-
-
-int main()
-{
- char firstName[20]{};
- int i = 0;
-
- cout << "Enter your name: ";
- cin >> firstName; //just giving it a name
- cout << " Your first name is: \n";
-
- while (firstName[i] != '\0')
- {
- cout << &firstName[i] << endl; //&
- i++;
- }
-
-}
-*/