158) What will be the value returned by the following function, when it is called with a value 11?
recur(int num)
if ( ( num/2) !=0 )
return ( recur(num/2 ) * 10+num%2 );
else return 1;
Answer is:
1011
Related C Programming MCQ with Answers
Answer is:
Spawned
Answer is: