Choose the correct option to fill ?1 and ?2 so that the program below prints an input string in reverse order. Assume that the input string is terminated by a newline character.
Void reverse(void) {
int c;
if ( ?1) reverse(); ?2
}
Main() {
Print f(“Enter Text”);
printf(“\n”);
Reverse();
printf(“\n”);
}
Reveal answer
Fill a bubble to check yourself
