How can I allocate arrays or structures bigger than 64K?
Answer Posted / s.v.prasad reddy,lifetree
Generally using the malloc() function maximum we can
allocate the 64K memory.
If you want to allocate the memory larger than 64K then you
have to use the farmalloc() memory management function.
And one more important thing is ,Once memory is allocated
by the farmalloc(),then to free that memory we need to use
only farfree() fuction.We can't use the free() fuction to
free that memory.
| Is This Answer Correct ? | 15 Yes | 2 No |
Post New Answer View All Answers
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
What is static memory allocation?
what do you mean by inline function in C?
What is the difference between volatile and const volatile?
How to Throw some light on the splay trees?
How many keywords (reserve words) are in c?
What type is sizeof?
what is the role you expect in software industry?
What is actual argument?
What are the header files used in c language?
How can I find out the size of a file, prior to reading it in?
What is advantage of pointer in c?
How can I read in an object file and jump to locations in it?
How can I do serial ("comm") port I/O?