Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program that translates an alphabetic phone number into numeric form: *assume the input will be only uppercase Write a program that translates an
Write a program that translates an alphabetic phone number into numeric form:
*assume the input will be only uppercase
Write a program that translates an alphabetic phone number into numeric form: Enter phone number: CALLATT 2255288 (In case you don't have a telephone nearby, here are the letters on the keys: 2:ABC. 3:DEF. 4:GHI. 5:JKL, 6:MNO. 7:PRS. 8:TUV. 9:WXY) If the original phone number contains non-alphabetic characters (digits or punctuation, for example), leave them unchanged: Enter phone number: 1-800-COL-LECT 1-800-265-5328 You may assume that any letters entered by the user is upper case. (use getchar() and putchar) for reading the entries and writing the substitutes, respectively Please note, as an example, you can use putchar('1') to write 1 or putchar(ch) to write the character stored in ch)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