Recursion
Your task is to make the reverse of the previous exercise, a function called count_up which accepts an integer and prints from 1 to that number.
int main() { count_up(5); }
1 2 3 4 5