Sadul Khod
Sadul Khod
8 years ago

what is the out put of this code
#include
void MyFunc(int x)
{
if(x>0)
MyFunc(--x);
printf("%d",x);
}
int main()
{
MyFunc(5);
return 0;
}

Solution(By Examveda Team)

001234

This Question Belongs to User Ask Question >> Miscellaneous

Join The Discussion

Comments ( 1 )

  1. Sudhakar Prajapati
    Sudhakar Prajapati :
    8 years ago

    001234

Related User Ask Questions