From d03559b2883377657e0db7bd456a83696dfab0d4 Mon Sep 17 00:00:00 2001 From: BensProgramma <91996773+BensProgramma@users.noreply.github.com> Date: Wed, 3 Nov 2021 05:55:39 -0700 Subject: Update CST116F2021-Lab5Exercises_Schroeder.cpp deleted some comments --- .../CST116F2021-Lab5Exercises_Schroeder.cpp | 23 ---------------------- 1 file changed, 23 deletions(-) (limited to 'CST116F2021-Lab5') 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 -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++; - } - -} -*/ -- cgit v1.2.3