void palin(int n) { char next; if(n<1) { printf("\n\0:"); } else { next=getchar(); palin(n-1); putchar(next); } }