How can we allocate array or structure bigger than 64kb?
Answers were Sorted based on User's Feedback
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 |
Is c easy to learn?
What is oops c?
largest Of three Number using without if condition?
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
How is a null pointer different from a dangling pointer?
how should functions be apportioned among source files?
What is "Duff's Device"?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
How to calculate sum
what is the syallabus of computer science students in group- 1?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }