Ask your own question, for FREE!
Computer Science 12 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!
Latest Questions
clllaaaaaire: CLOSED
1 hour ago 0 Replies 0 Medals
GhostRecon: THIS SITE IS DEADDD ASFFF THIS USED TO BE POPPIN
50 minutes ago 1 Reply 0 Medals
GhostRecon: THIS SITE IS DESD ASFFF
1 day ago 0 Replies 0 Medals
RiftBreaker: why do most jobs require CPR cards
2 days ago 4 Replies 0 Medals
RiftBreaker: best emo country type music
2 days ago 1 Reply 0 Medals
RiftBreaker: what's the best anime like fire force
3 days ago 4 Replies 0 Medals
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!