Answer Posted / harshal
Heap is for being free memory.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How can you increase the allowable number of simultaneously open files?
Write a C program to count the number of email on text
What are the disadvantages of a shell structure?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
How can I swap two values without using a temporary?
Can we access array using pointer in c language?
What is a program?
Why do we use header files in c?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is use of bit field?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is calloc()?
How can you read a directory in a C program?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is difference between && and & in c?