what is array?

Answers were Sorted based on User's Feedback



what is array?..

Answer / senthiltime

Array is a collection of similar data types.

Is This Answer Correct ?    289 Yes 20 No

what is array?..

Answer / vignesh1988i

an array ia an homogenous collections of same data types
which occupies continues memory locations .......

Is This Answer Correct ?    166 Yes 31 No

what is array?..

Answer / anandmayi

An array is a collection of homogenous data elements which are
stored in consecutive memory locations.Always address location
of array starts from 0.

Is This Answer Correct ?    143 Yes 24 No

what is array?..

Answer / yug

array is a sequential collection of elements of same data
types and those are stored in contiguous memory locations.

Is This Answer Correct ?    80 Yes 15 No

what is array?..

Answer / manipal singh

Array is a collection of similar data types which stored in
contiguous memory locations

Is This Answer Correct ?    65 Yes 9 No

what is array?..

Answer / khamseum

array is a collection of data items of same datatype

Is This Answer Correct ?    63 Yes 17 No

what is array?..

Answer / abilash

It is a set of elements which stored under a single name.

Is This Answer Correct ?    72 Yes 30 No

what is array?..

Answer / jolly

array is on type of index

Is This Answer Correct ?    43 Yes 25 No

what is array?..

Answer / geetha gajendiran

a simple program using array

#include<stdio.h>
void main()
{
int avg,sum=0;
int i;
int pay[30];/*array declaration*/
for(i=0;i<=29;i++)
{
printf("\n enter payment:");
scanf("%d",&pay[i]);/*store data in array*/
}
for(i=0;i<=29;i++)
sum=sum+pay[i];/*read data from an array*/
avg=sum/30;
printf("\n average marks =%d",avg);
}

Is This Answer Correct ?    20 Yes 2 No

what is array?..

Answer / junaid a mullaji

An array is a method for storing information on multiple
devices.

By
Junaid A. Mullaji

Is This Answer Correct ?    50 Yes 33 No

Post New Answer

More C Interview Questions

what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }

4 Answers  


What character terminates all strings composed of character arrays? 1) 0 2) . 3) END

3 Answers  


What are comments and how do you insert it in a C program?

0 Answers  


What is call by reference in functions?

1 Answers  


How can I direct output to the printer?

0 Answers  






Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me

2 Answers  


Why is c called c?

0 Answers  


Write a c program to print the sizes and ranges of different data types in c?

1 Answers  


what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }

1 Answers  


write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer

1 Answers  


Explain how can I prevent another program from modifying part of a file that I am modifying?

0 Answers  


How are portions of a program disabled in demo versions?

0 Answers  


Categories