write a C program:There is a mobile keypad with numbers 0-9
and alphabets on it. Take input 0f 7 keys and then form a
word from the alphabets present on the keys.

Answer Posted / jainsih

good prog

Is This Answer Correct ?    19 Yes 28 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Implement bit Array in C.

669


1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2328


What is a char c?

586


What is the difference between declaring a variable by constant keyword and #define ing that variable?

2688


The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

1055






Can the curly brackets { } be used to enclose a single line of code?

709


What is table lookup in c?

622


What are multibyte characters?

639


write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1

3271


What is a macro in c preprocessor?

620


write a c program to calculate sum of digits till it reduces to a single digit using recursion

2713


What is data structure in c and its types?

585


What is hungarian notation? Is it worthwhile?

687


how to capitalise first letter of each word in a given string?

1424


Write a program to print all permutations of a given string.

637