diff options
| author | BensProgramma <[email protected]> | 2021-11-03 05:55:39 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-03 05:55:39 -0700 |
| commit | d03559b2883377657e0db7bd456a83696dfab0d4 (patch) | |
| tree | 77d9a25c19dca03c290de0899cf1acb75eb99108 /CST116F2021-Lab5/CST116F2021-Lab5Exercises_Schroeder.cpp | |
| parent | Delete README.md (diff) | |
| download | cst116-lab5-bensprogramma-master.tar.xz cst116-lab5-bensprogramma-master.zip | |
deleted some comments
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++;
- }
-
-}
-*/
|