my assignment question is like that
Write a program which prints the letters in a char array in reverse order using void printReverse(char
Write a program which prints the letters in a char array in reverse order using
void printReverse(char
void printReverse(char letters[], int size) is the signature of the function that you have to do. E.g.
void printReverse(char letters[], int size)
void printReverse(char letters[], int size) { //your code goes here }
and call it from your main window with the parameters.