Question: This is a long problem, so I would appreciate at least some help on what to do. I will definitely make sure to thumbs up

This is a long problem, so I would appreciate at least some help on what to do. I will definitely make sure to thumbs up the answer. This would help me so much!
Standard telephone keypads contain the digits 0 through 9. The numbers 2 through 9 each have three letters associated with them, as is indicated by the following table: Digit Digit Letter Letter 2 ABC 6 MNO 3 DEF PR S 4 GHI 8 TUV JKL To W X Y Write a program that translate seven-letter words in a file to their corresponding phone numbers l. Name your program phone numbers. c 2. The program reads the content of the file and translate the seven-letter words into their corresponding phone numbers, then writes the phone numbers to a file with the same name but an added extension of .cvt. For example, if the original file name is phone list .txt, then the corresponding phone numbers will be stored in a file named phone list.txt.cvt. Assume the file name is no more than 100 characters. Enter the file name phone list .txt Output file name phone list .txt.cvt 3. The program should include the following function: void translate (char word, char *phone number) The function expects word to point to a string containing the seven-letter words to be translated, phone number represents the pointer pointing to the string storing the phone number. For example, if the word is TAKEOUT, the function will store 8253688 pointed by phone number
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
