WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
Answer Posted / mohit
if array is of integer type then max size should be
65536.(ie total range for integers).however it shows array
size too large.for character data type the range 65536 is valid.
| Is This Answer Correct ? | 40 Yes | 12 No |
Post New Answer View All Answers
What is the difference between call by value and call by reference in c?
what do u mean by Direct access files? then can u explain about Direct Access Files?
What does the c preprocessor do?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is use of pointer?
Explain how can I avoid the abort, retry, fail messages?
What is data structure in c and its types?
What is a null pointer in c?
What are nested functions in c?
What is the difference between array and pointer?
Can we increase size of array in c?
Is stack a keyword in c?
Why is c faster?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Describe the modifier in c?