How can I allocate arrays or structures bigger than 64K?
Answer Posted / nithya
For arrays larger than 64k use
char huge array3[100000L];
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are the parts of c program?
Why main is not a keyword in c?
What are the different types of C instructions?
Is it valid to address one element beyond the end of an array?
How do I determine whether a character is numeric, alphabetic, and so on?
Explain what are the different data types in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Is it better to use malloc() or calloc()?
What is atoi and atof in c?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
explain what are pointers?
Why is void main used?
Explain Basic concepts of C language?
Explain what is meant by 'bit masking'?
What is the use of the function in c?