In: Computer Science
Develop a program that asks a user to enter the number 10, and then it outputs COUNT-DOWN from 10 to 0.
The following code is in C language.Explanation:
First we take the input from the user and store in the array and there is for loop for scan the inputs. Again there is for loop from i=length-1 that means it will reduce the length by 1 and then gives the output one by one (i--).