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.
What are the features of the c language?
main() { printf("hello"); fork(); }
What is the correct code to have following output in c using nested for loop?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What are the different types of control structures in programming?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
How can you avoid including a header more than once?
What are the advantages of the functions?
why we use "include" word before calling the header file. is there any special name for that include??????
how to display 2-D array elements in spiral
How can I sort more data than will fit in memory?
what is the hardware model of CFG( context free grammar)