This program should reverse a phrase, but only the order of the words should be reversed. The words themselves must remain as words. Also the number of spaces should remain the same.
In your code, you only print the word given by the user. What you need to do is create a for loop, from the last element of vWords, print each element. This, in theory, should print the given words in reverse order.