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 |
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is the difference between #include and #include 'file' ?
write a c program to find the sum of five entered numbers using an array named number
What is the main differences between C and Embedded C?
Give differences between - new and malloc() , delete and free() ?
consagous technology placement paper
Which type of language is c?
about c language
Differentiate between full, complete & perfect binary trees.
What is pass by value in c?
Is there a way to jump out of a function or functions?