I have a string list including some words. For example, I have
words={cut, was, saw, clear, sharp, keen, tree, these};
I want to write a code that changes the first letter of each word to the capital letter. I mean I want to have the result as
{Cut, Was, Saw, Clear, Sharp, Keen, Tree, These};
How can I figure it out?