toupper(letter);
Capital(string) { for(new i, len = strlen(string); i < len; i++) { string[i] = toupper(string[i]); } return string; }