Recursion
Your task is to create a recursive function called count_down which accepts an integer and prints from the number to 1.
int main() { count_down(5); }
5 4 3 2 1