# include void downUpRec(int n) { if(n <= 0) { printf("0"); return; } printf("%d, ", n); downUpRec(n-1); printf(", %d", n); }