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 |
Write a program that accept anumber in words
Give the Output : * * * * * * * * * *
fn f(x) { if(x<=0) return; else f(x-1)+x; }
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
wite a programme in c to linear search a data using flag and without using flags?
plz answer.. a program that takes a string e.g. "345" and returns integer 345
What is a pragma?
what is computer engg
Explain what is a const pointer?
Explain c preprocessor?
write a program to find the number of even integers and odd integers in a given array in c language
13 Answers IAI Cameroun, NIIT, Olive Tech, QIS,
How can I find the modification date and time of a file?