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
How can you restore a redirected standard stream?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
What is the difference between struct and typedef struct in c?
Can we change the value of constant variable in c?
What is #include conio h?
What is data structure in c and its types?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
int i=10; printf("%d %d %d", i, i=20, i);
Explain pointers in c programming?
What are the types of data structures in c?
#include
what is a function method?give example?
Explain what will the preprocessor do for a program?
What is static volatile in c?
What is the difference between variable declaration and variable definition in c?