#include <stdio.h>char hello[20] = "hello world!!!"; void reverse(char *word, int n){ printf("%c", word[n]); if (n == 0) return 0; reverse(&hello, n - 1);}int main(void) { reverse(&hello,20);}
#include <stdio.h>
char hello[20] = "hello world!!!";
void reverse(char *word, int n){ printf("%c", word[n]); if (n == 0) return 0; reverse(&hello, n - 1);}
int main(void) {
reverse(&hello,20);}