I want to print a string backwards. But my code seems to count down the alphabet from the last letter in the array to the first letter in the array instead of counting down
In your loop, x is the index into the character array comprising word. So x should change from end to 0, and referencing the array should be as word[x].