void myFunc (int x)
{ if (x > 0)
myFunc(--x);
printf("%d, ", x);
}
int maino
{
myFunc(5);
return 0;
}
What will the above sample code produce when executed?
Answers
Answered by
0
Answer:
What question is this
Similar questions