Answer Posted / ashish
A structure is a collection of variables under a single name.
These variables can be of different types, and each has a name
which is used to select it from the structure. A structure is
a convenient way of grouping several pieces of related
information together.
A structure can be defined as a new named type, thus extending
the number of available types. It can use other structures,
arrays or pointers as some of its members, though this can get
complicated unless you are careful.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
Explain the difference between the local variable and global variable in c?
Why we use void main in c?
What is union and structure in c?
Write a program to identify if a given binary tree is balanced or not.
What are logical errors and how does it differ from syntax errors?
How can I swap two values without using a temporary?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is the g value paradox?
What is difference between && and & in c?
What are # preprocessor operator in c?
how could explain about job profile
What does c mean?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.