If I have the following code
#include <stdio.h>
#include <ctype.h>
#include <string.h>
int main(void)
{
char prose[] = "to be or not to be that is the question";
int i, len;
len = strlen(prose);
puts (prose);
return 0;
}
where would I insert the function Cap to capitalize the first letter of each word? Am I better off using a different method?