what is array?
Answers were Sorted based on User's Feedback
Answer / senthiltime
Array is a collection of similar data types.
| Is This Answer Correct ? | 289 Yes | 20 No |
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 |
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 |
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 |
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 |
Answer / khamseum
array is a collection of data items of same datatype
| Is This Answer Correct ? | 63 Yes | 17 No |
Answer / abilash
It is a set of elements which stored under a single name.
| Is This Answer Correct ? | 72 Yes | 30 No |
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 |
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 |
what is the difference between const volatile int i & volatile const int j;
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
say the following declaration is correct nr not. int b=a,n=0;
What is graph in c?
Can you please compare array with pointer?
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
why i join syntel?
23 Answers ABC, Syntel, TCS,
What is meant by int fun const(int a, int b) { .... ... }
What is a class c rental property?
What is the value of h?