Please write a recursive program to reverse a given string.
We have provided the partial judge code (13062.c) below for you.
All you need to do is complete the void reverse(char *str, int k) function and submit it to NTHU Online Judge System.
void reverse(char *str, int k){
...
...
}
Attention: Using recursion to solve this problem.
Given a string.
Print the reversed string.