Question: Digit to WordsWrite a C program that asks the user for a two-digit number, then prints the English wordfor the number. Your program should loop

Digit to WordsWrite a C program that asks the user for a two-digit number, then prints the English wordfor the number. Your program should loop until the user wants to quit.Example:Enter a two-digit number: 45You entered the number forty-five.Hint: Break the number into two digits. Use one switch statement to print the word for the firstdigit (twenty, thirty, and so forth). Use a second switch statement to print the word for thesecond digit. Dont forget that the numbers between 11 and 19 require special treatment.

i need help how to both enter both digits on the same line

this is my program

#define _CRT_SECURE_NO_WARNINGS #include

int main(void) { int num1; int num2;

printf("<<<<<>>>>>>> "); printf("Enter 2 digits from 00 to 99: "); printf("Enter the first single digit: "); scanf("%d", &num1); printf("Enter the second single digit: "); scanf("%d", &num2)

.....

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!