Ask your own question, for FREE!
Computer Science 19 Online
OpenStudy (anonymous):

What is Malloc ?

OpenStudy (anonymous):

Memory Alloc - allocate a block of memory, normally from the heap.

OpenStudy (anonymous):

Use it thusly to avoid problems: malloc(sizeof(mystruct))

OpenStudy (anonymous):

hmmm i need a appropiate answer

OpenStudy (anonymous):

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.

OpenStudy (anonymous):

Malloc is a function in some programming languages (most notably C) that allocates a certain number of bytes to hold some data structure?

OpenStudy (shadowfiend):

What do you mean by an appropriate answer..?

OpenStudy (anonymous):

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.

OpenStudy (rsmith6559):

I would consider new to be a wrapper of malloc.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!