diff options
| author | WiserJ <[email protected]> | 2021-11-02 15:07:38 -0700 |
|---|---|---|
| committer | WiserJ <[email protected]> | 2021-11-02 15:07:38 -0700 |
| commit | 9d0b656974bc16dbedcffb09c2d447fa0a2cd457 (patch) | |
| tree | f1702d479820f25787b69d07625cbd9079fec0db /CST116F2021-Lab5/p260.cpp | |
| parent | 3 file solution (diff) | |
| download | cst116-lab5-jeffwoit-9d0b656974bc16dbedcffb09c2d447fa0a2cd457.tar.xz cst116-lab5-jeffwoit-9d0b656974bc16dbedcffb09c2d447fa0a2cd457.zip | |
260
Diffstat (limited to 'CST116F2021-Lab5/p260.cpp')
| -rw-r--r-- | CST116F2021-Lab5/p260.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/CST116F2021-Lab5/p260.cpp b/CST116F2021-Lab5/p260.cpp new file mode 100644 index 0000000..d36cb5d --- /dev/null +++ b/CST116F2021-Lab5/p260.cpp @@ -0,0 +1,18 @@ +#include "Header1.h" + +void GetFirst(char inputFirst[]) +{ + cout << "Please enter your first name: "; + cin >> inputFirst; +} + +void GetLast(char inputLast[]) +{ + cout << "Please enter your last name: "; + cin >> inputLast; +} + +void DispName(char outputFirst[], char outputLast[], char outputFull[]) +{ + +}
\ No newline at end of file |