diff options
| author | till-t <[email protected]> | 2021-11-02 23:19:57 -0700 |
|---|---|---|
| committer | till-t <[email protected]> | 2021-11-02 23:19:57 -0700 |
| commit | efb5378904d824407e24247b19fdeb4f0eea9475 (patch) | |
| tree | 91810de53de404cc3af99144f81e02e5512408e7 /mod_10b/main.cpp | |
| parent | Folder for last lab question. Incomplete. (diff) | |
| download | archived-cst116-lab5-till-t-efb5378904d824407e24247b19fdeb4f0eea9475.tar.xz archived-cst116-lab5-till-t-efb5378904d824407e24247b19fdeb4f0eea9475.zip | |
update
Diffstat (limited to 'mod_10b/main.cpp')
| -rw-r--r-- | mod_10b/main.cpp | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/mod_10b/main.cpp b/mod_10b/main.cpp index 489c45a..92605e8 100644 --- a/mod_10b/main.cpp +++ b/mod_10b/main.cpp @@ -1 +1,21 @@ -main +/*Tyler Taormina + * CST 116 + * cStrings problem First/Last name + * + */ + +#include "source.h" + + +int main() +{ + char Firstname = [50]; + char Lname = [50]; + char Fullname= [100]; + + getFullName(Firstname, Lname, Fullname); + + return 0; +} + + |