summaryrefslogtreecommitdiff
path: root/hw3/problem3.c
blob: 716915f869369f6ce66e7e96bf22f7ecb95bd39b (plain)
1
2
3
4
5
#include <ctype.h>

void proper(char *word){
	word[0] = toupper(word[0]);
}