I am trying to receive a word as input from a user and store it into an array which stores each letter as its own element.
basically the same as would be done if I were to initialise
char word[] = "hello";
so I could then use loops to check for certain letters.
I have tried using scanf in various ways with %c and %s specifiers and using a loop to read letter by letter, which did not work.
Everything I have tried so far just stores the full word as the first element in the array or just throws errors.
Thanks for the help!