• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests

GATE | GATE-IT-2004 | Question 60

Choose the correct option to fill the ?1 and ?2 so that the program prints an input string in reverse order. Assume that the input string is terminated by a new line character.
#include <stdio.h>
void wrt_it (void);
int main (void)
{
    printf("Enter Text"); 
    printf ("\\n");
    wrt_ it();
    printf ("\\n");
    return 0;
}
void wrt_it (void)
{
    int c;
    if (?1)
        wrt_it();
    ?2
}

(A)

?1 is  getchar() ! = \'\\n\' ?2 is  getchar(c);

(B)

?1 is  (c = getchar()); ! = \'\\n\' ?2 is  getchar(c);

(C)

?1 is  c! = \'\\n\' ?2 is  putchar(c);

(D)

?1 is (c = getchar()) ! = \'\\n\' ?2 is putchar(c);

Answer

Please comment below if you find anything wrong in the above post
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!

Last Updated :
Share your thoughts in the comments