aboutsummaryrefslogtreecommitdiff
path: root/CST116F2021-Lab5/p260.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CST116F2021-Lab5/p260.cpp')
-rw-r--r--CST116F2021-Lab5/p260.cpp18
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