Explain what is the heap?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between abs() and fabs() functions?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
write a program in c to read array check element is present or not?
What is a structure and why it is used?
What is difference between structure and union?
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
What are pragmas and what are they good for?
How many identifiers are there in c?
c program to input values in a table(using 2D array) and print odd numbers from them
What are the advantages and disadvantages of a heap?
What is the difference between malloc calloc and realloc in c?