Gate2017 cs Q62

0. Consider the following two functions.
void fun1 (int n) {
if (n == 0 ) return;
printf (“%d” , n);
fun2 (n - 2); printf (“%d” , n);
}
void fun2 (int n) {
if (n = = 0) return ;
printf (“%d” , n);
fun1(++n) ;
printf (“%d” , n);
}
The output printed when fun1(5) is called is

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *