Write a c program to build a heap method using Pointer to
function and pointer to structure ?
Convert the following expression to postfix and prefix (A+B) * (D-C)
What is wrong with this program statement? void = 10;
How do I read the arrow keys? What about function keys?
simple c program for 12345 convert 54321 with out using string
What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }
write a program in c language to print your bio-data on the screen by using functions.
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
what are the stages of compilation
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(“%d”,x); }
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
What is a const pointer in c?