Question: A program in C takes a number from the user and receives the number of strings, and the first letter of each word is capitalized
A program in C takes a number from the user and receives the number of strings, and the first letter of each word is capitalized and the rest of its letters are lower, and the input is displayed in the output in the same way. #include #include #include #include int main() { char str[100][900]; int n,i,j; char ch; scanf("%d",&n); while( ch = getchar() != ' ' && ch != EOF); for(i=0;i
Attachments:
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
