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