#include<stdio.h>void fun(int x){ if(x > 0) { fun(--x); printf("%d\t", x); fun(--x); }} int main(){ int a = 4; fun(a); getchar(); return 0;}
Not registered? Create an account
Forgot Password?
Already a registered user? Login