what is array?

Answers were Sorted based on User's Feedback



what is array?..

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

what is array?..

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

what is array?..

Answer / mubarak khowaja

array is the collection of similer data type,

Is This Answer Correct ?    0 Yes 0 No

what is array?..

Answer / ram kumar

array is a group of characturs

Is This Answer Correct ?    0 Yes 0 No

what is array?..

Answer / joel

array the method of storing multiple data on the same drive

Is This Answer Correct ?    0 Yes 0 No

what is array?..

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

what is array?..

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

what is array?..

Answer / dilip

Array is a collection of number of element and collection
of data type

Is This Answer Correct ?    0 Yes 0 No

what is array?..

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

what is array?..

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

Post New Answer

More C Interview Questions

what is the difference between unix os and linux os

4 Answers  


where does it flourished?

0 Answers   Microsoft,


Why is conio.h not required when we save a file as .c and use clrscr() or getch() ?

2 Answers  


Why we use int main and void main?

0 Answers  


Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 Answers   IBM,






Write an interactive c program that will encode or decode a line of text. To encode a line of text, proceed as follows: Convert each character, including blank spaces, to its ASCII equivalent. Generate a positive random integer. Add this integer to the ASCII equivalent of each character. The same random integer will be used for the entire line of text. Suppose that N1 represents the lowest permissible value in the ASCII code, and N2 represents the highest permissible value. If the number obtained in step 2 above exceeds N2, then subtract the largest possible multiple of N2 from this number, and add the remainder to N1. Hence the encoded number will always fall between N1 and N2, and will therefore always represent some ASCII character. Display the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text. Be certain, however, that the same random number is used in decoding as was used in encoding.

1 Answers   Amazon, CSJM, HCL, Microsoft, TCS, Wipro,


explain about storage of union elements.

2 Answers   ABC, Bosch,


What is zero based addressing?

0 Answers  


difference between loading and linking

1 Answers  


main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }

1 Answers   Accenture, Vector,


What is s or c?

0 Answers  


What is the difference between arrays and pointers?

0 Answers  


Categories