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

Program to find the sum of digits of a given number until the sum becomes a single digit

8 Answers   InterGraph,


What are compound statements?

0 Answers  


How can I change their mode to binary?

0 Answers  


What is meant by initialization and how we initialize a variable?

0 Answers  


how many argument we can pas in in a function

25 Answers   CTS,






how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...

1 Answers   Infosys,


write an algorithm and a program to count the number of elements in a circularly singly linked list

1 Answers   Ignou,


Is there a way to jump out of a function or functions?

0 Answers  


What is sizeof return in c?

0 Answers  


WHOT IS CHAR?

4 Answers   TCS,


A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above

2 Answers   Accenture,


How Many Header Files in c?

2 Answers   TCS,


Categories