You need to prepare a function to switch statement.
Program: Write a program using a function and a switch statement. The user should be prompted to enter a number in main.
The function is called and the number entered is passed to the function.
This function parameter will then be used in a switch to discover and print out the number word within the function (for example, 1=one, 2=two, 3=three, etc.).
Enter a number: 1
You entered the number one.
You may select to limit the number entered by the user to exacting range. Make sure to prompt the user with this range, so you can deal with incorrect and correct numbers entered. Please do proper documentation of code.