Answer Posted / 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 |
Post New Answer View All Answers
What are the similarities between c and c++?
What is the best style for code layout in c?
How can a process change an environment variable in its caller?
What does %c do in c?
Tell me what is the purpose of 'register' keyword in c language?
Why c is called object oriented language?
What is volatile c?
Can a file other than a .h file be included with #include?
Can you write the function prototype, definition and mention the other requirements.
What is the difference between #include
What does the c in ctime mean?
Is c is a low level language?
How do we make a global variable accessible across files? Explain the extern keyword?
Is multithreading possible in c?
what are the facialities provided by you after the selection of the student.