Write a function that will take in a phone number and output all possible alphabetical combinations


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Why & is used in scanf in c?

0 Answers  


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

0 Answers   Wilco,


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

0 Answers   CSC, Wipro,


write a program to print largest number of each row of a 2D array

0 Answers  


Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

4 Answers   Accenture,


Explain what is the best way to comment out a section of code that contains comments?

0 Answers  


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

0 Answers  


How is a pointer variable declared?

0 Answers  


Can you write a programmer for FACTORIAL using recursion?

0 Answers   ADP,


void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }

1 Answers  


how to find your architecture is LittleEndian or BigEndian?

1 Answers  


What are the salient features of c languages?

0 Answers  


Categories