I have a little question... with this like what do i do...


char *k = new char[30] ;

i know this makes a pointer "K" to a structure of 30 chars.. but this works on the heap... i want to do it on the ram memory... i have read something about farmalloc and farcalloc... but that's c, how do i do that on c++

the problem is that i need to alloc about 5 MB without fill the heap.. i just want to do it on the ram (extended memory...)