summaryrefslogtreecommitdiff
path: root/hw3/problem3.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw3/problem3.c')
-rw-r--r--hw3/problem3.c5
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]);
+}