/* ex7-269-5.c Homewrok 7, Page 269 */ #include #include void strcap(char str[]); main() { char str[100]="Hello, this is math 211, have fun!"; strcap(str); puts(str); return 0; } void strcap(char str[]) /* Your function here */