Write a recursive function that given integer n, counts down from n to 1. When the count reaches 0,your function should also display "GO!"
Write a recursive function that takes a character array and prints the array without the vowels.
Write a program Recursion.c that calls both recursive functions.
For the first function, your program should ask the user for n and display the count down on screen.
For the second function, your program should create an array of size 10, fill it from user input then display it without the vowels.