Write a function that will take in a phone number and output all possible alphabetical combinations
Why & is used in scanf in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
write a program to print largest number of each row of a 2D array
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
Explain what is the best way to comment out a section of code that contains comments?
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
How is a pointer variable declared?
Can you write a programmer for FACTORIAL using recursion?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
how to find your architecture is LittleEndian or BigEndian?
What are the salient features of c languages?