Subj : Memory allocation To : borland.public.cpp.borlandcpp From : "Sameer" Date : Tue Oct 28 2003 12:37 am I have created 16-bit application where I am getting problem in allocating new huge buffer. I have already made some static allocation, which is already optimized. If I allocate 50000 bytes(like static int a[25000]) the program works fine, but if I increase this buffer by 200 (like static int a[25100])bytes it doesn't work. I have already checked my data segment and I have ensured that it is not exceeding 64k as any data above 200 bytes will be made far using the compiler setting. Please tell me what is problem in this case. Thanks in advance. Regards, Sameer. .