Write a c program to build a heap method using Pointer to
function and pointer to structure ?


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

Post New Answer

More C Interview Questions

Convert the following expression to postfix and prefix (A+B) * (D-C)

3 Answers   Satyam,


What is wrong with this program statement? void = 10;

0 Answers  


How do I read the arrow keys? What about function keys?

0 Answers  


simple c program for 12345 convert 54321 with out using string

7 Answers   TCS,


What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }

1 Answers  






write a program in c language to print your bio-data on the screen by using functions.

0 Answers  


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

2 Answers  


what are the stages of compilation

1 Answers   Bosch,


wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }

2 Answers  


main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(“%d”,x); }

8 Answers   Vector,


union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }

3 Answers  


What is a const pointer in c?

0 Answers  


Categories