WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?

Answers were Sorted based on User's Feedback



WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?..

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

WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?..

Answer / gagandeep kaur

max size of an array is depends upon its datatype

Is This Answer Correct ?    31 Yes 6 No

WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?..

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

WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?..

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

WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?..

Answer / shashank sharma

it depend on data type

Is This Answer Correct ?    0 Yes 0 No

WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?..

Answer / sonal

indefinite

Is This Answer Correct ?    6 Yes 28 No

WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?..

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

WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?..

Answer / sonal

50

Is This Answer Correct ?    3 Yes 44 No

Post New Answer

More C Interview Questions

Compare and contrast compilers from interpreters.

0 Answers  


What is period operator in c?

3 Answers   Wipro,


read an array and search an element

1 Answers  


. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none

9 Answers   Oracle,


What are the three constants used in c?

0 Answers  






What was noalias and what ever happened to it?

0 Answers  


Why doesn't C have nested functions?

2 Answers  


all c language question

0 Answers   Wipro,


WAP to find that given no is small or capital

3 Answers  


Explain pointer. What are function pointers in C?

0 Answers   HCL,


please help me.. how to write a code of this output?? "Enter range number:"10 1 is an odd number 2 is an even numbers 3 in an odd numbers 4 " to 10" "printing all odd numbers:" 1,3,5,7,9 "printing all even numbers:" 2,4,6,8,10 "sum of all odd numbers:25 "sum of all even numbers:30 using a C Programming ARRAY pleas pleas help.. its my project ..please :(

1 Answers  


what is the difference between malloc() and calloc() function?

1 Answers  


Categories