diff options
Diffstat (limited to 'CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp')
| -rw-r--r-- | CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp | 23 |
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++;
- }
-
-}
-*/
|