WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / gagandeep kaur
max size of an array is depends upon its datatype
Is This Answer Correct ? | 31 Yes | 6 No |
Answer / seema choudhary
Depending upon a data type
integer datatype it limits is 65536 i.e range of the
integer data type
Is This Answer Correct ? | 5 Yes | 3 No |
Answer / himani
integer datatype limit is array size limit. for systems with
2 byte integers...limit is 65535
Is This Answer Correct ? | 3 Yes | 3 No |
Answer / vijay
max size of characfter array is 80.
max size of int or float array is equal to their range.
Is This Answer Correct ? | 6 Yes | 28 No |
how can i get the output 54321 4321 321 21 1 in c programming........???? pls help......
Why does everyone say not to use scanf? What should I use instead?
What is a program flowchart and how does it help in writing a program?
Is it fine to write void main () or main () in c?
What are the functions to open and close the file in c language?
Can a pointer be static?
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
errors in computer programmes are called
How can you tell whether two strings are the same?
What is call by value in c?