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
Which is best linux os?
What is a pointer in c?
In a switch statement, what will happen if a break statement is omitted?
What is action and transformation in spark?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Why is it important to memset a variable, immediately after allocating memory to it ?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is the explanation for cyclic nature of data types in c?
What are different types of pointers?
write a c program to find the sum of five entered numbers using an array named number
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Where static variables are stored in c?
What are the usage of pointer in c?
What is a static variable in c?