Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?

4 Answers   Ramco,


plz answer.. a program that takes a string e.g. "345" and returns integer 345

4 Answers  


How does pointer work in c?

0 Answers  


#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }

2 Answers  


How is a structure member accessed?

0 Answers  


Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

0 Answers  


Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?

0 Answers   MNC,


i have a written test for microland please give me test pattern

0 Answers   Microland,


every function has return the value?

1 Answers  


what is pointer?

13 Answers   HCL, TCS,


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


What is the code for 3 questions and answer check in VisualBasic.Net?

0 Answers   Infosys,


Categories