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 |
Explain goto?
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
Explain how do I determine whether a character is numeric, alphabetic, and so on?
what is array?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
What is spark map function?
If I have a char * variable pointing to the name of a function ..
What is the difference between arrays and pointers?
how to create duplicate link list using C???
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }