help in recursionthanks but when i compile it the o/p is 0 0 1 ...... how come that..
help in recursionvoid myFunc (int x) { if (x > 0) myFunc(--x); printf("%d, ", x); } int main() ...
This user does not accept Private Messages