what is array?
Answers were Sorted based on User's Feedback
Answer / geetha gajendiran
array is a collection of similar data types;
i can explain with following example:
#include<stdio.h>
void main()
{
int x;
x=5;
x=10;
printf("\nx=%d",x);
}
here 10 is assigned to x.thereby 5 get lost.this is
applicable when only one value is stored.
but,if we want to store more than one value at a time in a
single variable.we go for using the array
suppose we want to arrange the payment of 100 workers in
ascending order.we have 2 options
1)construct 100 vari8ables to store the payment amount
obtained by 100 different workers.
2)construct one(1) variable (called array or subscripted
variable) capable of storing or holding all the hundred
values.
for more question and answers regarding computer
engineering please mail to me.
| Is This Answer Correct ? | 20 Yes | 4 No |
Answer / manishsharama
array is the collection of similar data type.
| Is This Answer Correct ? | 17 Yes | 6 No |
Answer / dharmendra jadeja
Array is a Collection of Elements of same datatypes.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / niranjan
array is collection of similar types data which always
starts from o
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / nitesh pawar
Array means in short Array is group of variable which
having same name same data types but having differnt values
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / amit chauhan
Array is a collection of smiler data type.
address location of array starts from 0. OR
"It is a set of elements which stored under a single name". n
OR
"An array is a collection of homogenous data elements which
are stored in consecutive memory locations.
| Is This Answer Correct ? | 6 Yes | 3 No |
Answer / nikita
array is continous memory allocation for some data types.
<data ytpe> array name .[no of element].
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / gopi
An Array is a group of elements in a different datatype
| Is This Answer Correct ? | 11 Yes | 9 No |
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
C,c++, Java is all are structural oriented or procedure oriented language..?
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?
write a program to generate address labels using structures?
What is the difference between pure virtual function and virtual function?
What do you mean by c?
What is the use of keyword VOLATILE in C?
write a program for egyptian fractions in c?
write a method for an array in which it can display the largest n next largest value.