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.



write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 ke..

Answer / jainsih

good prog

Is This Answer Correct ?    19 Yes 28 No

Post New Answer

More C Interview Questions

What is the relation between # and include<stdio.h>

5 Answers   HCL,


How can you call a function, given its name as a string?

0 Answers  


How to reverse a string using a recursive function, without swapping or using an extra memory?

31 Answers   Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,


How #define works?

0 Answers  


Consider the following C program. #include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain

2 Answers  






What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.

1 Answers  


#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }

7 Answers   Infosys,


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

0 Answers   Wilco,


Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?

2 Answers  


In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a

2 Answers   BitWise,


What is character constants?

0 Answers  


two variables are added answer is stored on not for third variable how it is possible?

3 Answers  


Categories