How can we allocate array or structure bigger than 64kb?

Answers were Sorted based on User's Feedback



How can we allocate array or structure bigger than 64kb?..

Answer / banavathvishnu

change the memory model in complier option to higher Model.
Suppose your memory model is small change it to Huge.

Is This Answer Correct ?    2 Yes 1 No

How can we allocate array or structure bigger than 64kb?..

Answer / guest

specify the size as 64kb

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More C Interview Questions

What is getch() function?

0 Answers  


what is the advantage of function pointer

16 Answers   CMC, CS, Freshdesk, L&T, LG Soft, Matrix, TCS,


Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

0 Answers  


marge linklist

0 Answers   HCL,


How can I delete a file?

0 Answers  






Explain what is the difference between null and nul?

0 Answers  


What are types of preprocessor in c?

0 Answers  


write a program to create a sparse matrix using dynamic memory allocation.

0 Answers  


What are header files in c?

0 Answers  


How does pointer work in c?

0 Answers  


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?

7 Answers   AMCAT, HCL, Ramco, Zycus Infotech,


what r the cpu registers r ther?

1 Answers  


Categories