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 |
what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
what do you mean by inline function in C?
What is null pointer constant?
What is the use of linkage in c language?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Why can’t constant values be used to define an array’s initial size?
Write a simple code fragment that will check if a number is positive or negative.
With the help of using classes, write a program to add two numbers.
any "C" function by default returns an a) int value b) float value c) char value d) a & b
A stack can be implemented only using array?if not what is used?
What is the difference between exit() and _exit()?
When should a type cast not be used?