diff options
| author | WiserJ <[email protected]> | 2021-11-02 15:53:40 -0700 |
|---|---|---|
| committer | WiserJ <[email protected]> | 2021-11-02 15:53:40 -0700 |
| commit | bd1bec7e68837bb7dc2ddce510433b8f0fbdb44c (patch) | |
| tree | f4f519c17809f48281a114de521800ca65ad61dc /CST116F2021-Lab5/CST116F2021-Lab5.cpp | |
| parent | 260 (diff) | |
| download | cst116-lab5-jeffwoit-bd1bec7e68837bb7dc2ddce510433b8f0fbdb44c.tar.xz cst116-lab5-jeffwoit-bd1bec7e68837bb7dc2ddce510433b8f0fbdb44c.zip | |
done 273
Diffstat (limited to 'CST116F2021-Lab5/CST116F2021-Lab5.cpp')
| -rw-r--r-- | CST116F2021-Lab5/CST116F2021-Lab5.cpp | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/CST116F2021-Lab5/CST116F2021-Lab5.cpp b/CST116F2021-Lab5/CST116F2021-Lab5.cpp index 7446117..380b00f 100644 --- a/CST116F2021-Lab5/CST116F2021-Lab5.cpp +++ b/CST116F2021-Lab5/CST116F2021-Lab5.cpp @@ -6,13 +6,14 @@ int main() { - char firstName[FIRST_NAME]{}; - char lastName[LAST_NAME]{}; - char fullName[FULL_NAME]{}; + char string_1[INPUT_LIMIT]{}; + char string_2[INPUT_LIMIT]{}; - GetFirst(firstName); - GetLast(lastName); - DispName(firstName, lastName, fullName) + GetInput(string_1, string_2); + CompareInput(string_1, string_2); + /*DispResult();*/ + + return 0; } @@ -20,6 +21,24 @@ int main() +//int main() +//{ +// char firstName[FIRST_NAME]{}; +// char lastName[LAST_NAME]{}; +// char fullName[FULL_NAME]{}; +// +// GetFirst(firstName); +// GetLast(lastName); +// DispName(firstName, lastName, fullName); +// +// return 0; +//} + + + + + + //#include <iostream> // //using namespace std; |