Answer Posted / 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 |
Post New Answer View All Answers
Simplify the program segment if X = B then C ← true else C ← false
where are auto variables stored? What are the characteristics of an auto variable?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Why does everyone say not to use gets?
What is a memory leak? How to avoid it?
What is structure in c language?
What are the functions to open and close the file in c language?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What will the preprocessor do for a program?
What does int main () mean?
List the difference between a While & Do While loops?
The file stdio.h, what does it contain?
Write a code on reverse string and its complexity.
Write a program to swap two numbers without using third variable?
What does static variable mean in c?