diff options
| author | Alexander Pickering <alex@cogarr.net> | 2020-01-01 22:37:37 -0500 |
|---|---|---|
| committer | Alexander Pickering <alex@cogarr.net> | 2020-01-01 22:37:37 -0500 |
| commit | 9fae5d516012e2c0802105e67c79e2587a22b9dc (patch) | |
| tree | 1c782ad2cd08bd1ecc4f0b42bd042778b4f34c2e /hw3/problem3.c | |
| download | infsci2620-master.tar.gz infsci2620-master.tar.bz2 infsci2620-master.zip | |
Diffstat (limited to 'hw3/problem3.c')
| -rw-r--r-- | hw3/problem3.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hw3/problem3.c b/hw3/problem3.c new file mode 100644 index 0000000..716915f --- /dev/null +++ b/hw3/problem3.c @@ -0,0 +1,5 @@ +#include <ctype.h> + +void proper(char *word){ + word[0] = toupper(word[0]); +} |
