What is Malloc ?
Memory Alloc - allocate a block of memory, normally from the heap.
Use it thusly to avoid problems: malloc(sizeof(mystruct))
hmmm i need a appropiate answer
If you need a place to store some data, malloc is your friend. You can (M)emory (Alloc)ate some RAM to use to store it. If your program ends, or you (dealloc)ate it, then it's gone.
Malloc is a function in some programming languages (most notably C) that allocates a certain number of bytes to hold some data structure?
What do you mean by an appropriate answer..?
WEll, malloc is the c equivalent of new. With m alloc you can allocate a chunk of memory at runtime and since it's allocated at runtime it's obviously stored in a heap. So you can do something like take input from user and create an array of that size int * k = malloc(sizeof(int[n]); It returns a pointer to the memory location and you have to free the memory before the program ends.
I would consider new to be a wrapper of malloc.
Join our real-time social learning platform and learn together with your friends!