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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started