what is array?
Answers were Sorted based on User's Feedback
Answer / mr rafiq ahmad dar
an array is a fixed size sequenced collection of elements of same data type
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / abir maiti
An array is a linear data structure of homogeneous elements.
Homogeneous means, every element will be of same data type,
may of int type or of float type or of char type. Any array
will be stored in consecutive memory locations. Array
elements are accessed using index starting from 0. Array can
be one or multidimensional.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mubarak khowaja
array is the collection of similer data type,
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / joel
array the method of storing multiple data on the same drive
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / virender kumar
An array is a collection of similar data type, that can store the value of an object.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / bhavinsin darbar &bhavik g
array is collection of element which is having to same data
type
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dilip
Array is a collection of number of element and collection
of data type
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shubham
In short we can say that
Array is a single variable in
which multiple values of
same type can be stored.
Elements of Array share
single name.
Eg: int a[2];
here a is a variable in which
two elements of type int are
stored.
http://
studytipsandtricks.blogspot.in
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / prasad rokkam
An array is a collection of elements or group of elements, which belongs to same datatype.
Is This Answer Correct ? | 0 Yes | 0 No |
WHAT IS HEADER?
Explain how do you print only part of a string?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
Explain function?
What is wrong in this statement?
Which header file is used for clrscr?
How can I dynamically allocate arrays?
Can you apply link and association interchangeably?
Is it fine to write void main () or main () in c?
a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All
3 Answers Accenture, Digg.com,
HOW TO HANDLE EXCEPTIONS IN C
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.