summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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++;
- }
-
-}
-*/