#include void count(int n) { if (n == 0) { printf("Happy New Year!\n"); } else { count(n - 1); printf("%i\n", n); } } int main(void) { count(10); }