C++ Vector Exercises: Capitalize the first character of each vector element
Write a C++ program to capitalize the first character of each element of a given string vector. Return the new vector.
Sample Data:
({"red", "green", "black", "white", "Pink"}) ->
("Red", "Green", "Black", "White", "Pink"})
Sample Solution-1:
C++ Code:
Sample Output:
Original Vector elements: red green black white Pink Capitalize the first character of each vector element: Red Green Black White Pink
Flowchart:

Sample Solution-2:
C++ Code:
Sample Output:
Original Vector elements: red green black white Pink Capitalize the first character of each vector element: Red Green Black White Pink
Flowchart:

C++ Code Editor:
Contribute your code and comments through Disqus.
Previous C++ Exercise: Create an n x n matrix by taking an integer (n).
Next C++ Exercise: First string contains all letters from second string.
What is the difficulty level of this exercise?
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics