I want to print each first character of a List of Array in upper case using C.
For example, if I have Array of these elements
char *d[] = {"water", "salt", "sugar", "milk", "soda"};
I want my function to print them like this
Water Salt Sugar Milk Soda
I will appreciate any help.
Thank