I'm trying to print the whole word instead of just the first letter. I could do it with a loop but I figured there was a better way. I was searching around and saw answers that they changed %S to %c but I'm already using %c since it's a character array.
char* words[] = {"my", "word", "list"};
printf("The word: %c",*words[2]);
Results:
The word: l