Q. 75 Choose the correct option to fill ?1 and ?2 so that the program below prints aninput 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() { printf("Enter text"); printf("\n"); reverse(); printf("\n"); }
Answer: (D)
Explanation: