write aprogram for
There is a mobile keypad
with numbers 0-9 and alphabets on it. take input of 7 keys
and then form a
word from the alphabets present on those keys.

Answer Posted / kedharnath

answer

Is This Answer Correct ?    31 Yes 26 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how is the examination pattern?

1601


Give differences between - new and malloc() , delete and free() ?

616


What is the difference between array and pointer?

571


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

670


Can we use any name in place of argv and argc as command line arguments?

615






What does a function declared as pascal do differently?

612


Are the expressions * ptr ++ and ++ * ptr same?

673


What is difference between scanf and gets?

618


Why do we need functions in c?

565


about c language

1608


Why does everyone say not to use scanf? What should I use instead?

685


write a c program to find the sum of five entered numbers using an array named number

1622


Which is best linux os?

572


In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

2688


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

1191