Explain what are the advantages and disadvantages of a heap?
No Answer is Posted For this Question
Be the First to Post Answer
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
What is the difference between realloc() and free()
What are the types of type specifiers?
In C language what is a 'dangling pointer'?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
How do you print an address?
to find the closest pair
write a program in c language to print your bio-data on the screen by using functions.
Explain what is wrong with this statement? Myname = ?robin?;
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is floating point constants?