#include <stdio.h>

void count_down(int n){
    if(n == 1){
          printf("%d\n", n);
    } else{
        printf("%d\n", n);   
        count_down(n-1);
    }
}

int main(void){
    count_down(5);
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: