Home | » | C Programming | » | C Structures |
As you know different type of variables can be used for different purpose having different types of data-types. C supports such types of a constructed data type, which is called Structure. In Structure you can pack number of variables having different data type with single structure, which is called structure name or tag name or structure tag.
Contents
- Definition of Structure ?
- Structure Variables
- Simple Structure Program...
- Structure within Structure Nested Structure)
- Structure and array
Definition :
A structure is heterogeneous collection of related fields. Here fields are called structure member or structure element. Every field has different type-specifier (data-type).
The definition of structure of opposite of array, because array is set of homogeneous elements. But the structure has deep relationship with array.
Structure Variables : The general syntax used to declare a structure and structure variables is written as below :
struct structure-tag
{
date-type1 strcture element-1 or member-1;
date-type2 strcture element-2 or member-2;
date-type3 strcture element-3 or member-3;
......................................................;
date-type n strcture element-n or member-n;
};
main()
{
struct structure-tag v1,v2,..........vn;
local declaration;
executable statements;
}
Simple Structure Program :
Output is as :
Name=Bintu
City=Muktsar
Note:- struct is the keyword which we can't use as a variable.
Structure within Structure (Nested Structure):
Enter the Name and City
Bintu
Muktsar
Name=Bintu
City=Muktsar
Structure and array :
Arrays play very important role with structure. Structure has two types of view with the array. The two types of relationship of structure with array...
3 comments
Click here for commentsthank you for sharing nice article
Replyvisit
web programming tutorial
welookups
c graphic programming Games and Graphics Code Examples
Replynice article for beginners.thank you.
Replyjava tutorial
ConversionConversion EmoticonEmoticon