Thursday, 8 May 2008

what is the output of this program?

what is the output of this program ???explain plzzz

#include
void e(int n)
{
if(n>0)
{
e(--n);
printf("%d",6*n*6);
e(--n);
}
}

int main()
{
e(4);
}



--Asked by Koole Keshava

1 comment:

:-) said...

nothing will n printed?

 

NIE CSE 09


THINK - CREATE - HELP - SHARE