The output of the following c program.

#include
void fun(char *str)
{
  if(*str)
  {
    fun(str+1);
    printf("%c",*str);
  }
}
int main()
{
char str[] = {"Test book"};
fun(str);
return 0;
}

1
Test 
2
book Test
3
Test book
4
koob tseT

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation