Presentation is loading. Please wait.

Presentation is loading. Please wait.

UNIONS IN C.  Union Data Type Union Data Type  Defining of Union Defining of Union  Memory Space Allocation Memory Space Allocation  Example of Union.

Similar presentations


Presentation on theme: "UNIONS IN C.  Union Data Type Union Data Type  Defining of Union Defining of Union  Memory Space Allocation Memory Space Allocation  Example of Union."— Presentation transcript:

1 UNIONS IN C

2  Union Data Type Union Data Type  Defining of Union Defining of Union  Memory Space Allocation Memory Space Allocation  Example of Union Example of Union  Result Result  Difference between Structures & Union Difference between Structures & Union

3 Union Data Type A union is a user defined data type like structure. The union groups logically related variables into a single unit. The union data type allocate the space equal to space need to hold the largest data member of union. The union allows different types of variable to share same space in memory. There is no other difference between structure and union than internal difference. The method to declare, use and access the union is same as structure. BACK

4 Defining of Union A union has to defined, before it can used. The syntax of UNION is: union union_name { data_type-variable_name; …….. data_type-variable_name; };

5 Example of Union The union of Employee is declared as: union employee { int emp_id; char name[20]; float salary; char address[50]; int dept_no; int age; }; BACK

6 Memory Space Allocation 8000 emp_id, dept_no, age 8002 salary 8004 name 8022 address 8050 BACK

7 #include union student { char name[20]; char subject[20]; float percentage; }; main() { union student record1; union student record2; strcpy(record1.name, "Raju"); strcpy(record1.subject, "Maths"); record1.percentage = 86.50;

8 printf("Union record1 values example\n"); printf(" Name : %s \n", record1.name); printf(" Subject : %s \n", record1.subject); printf(" Percentage : %f \n\n", record1.percentage); printf("Union record2 values example\n"); strcpy(record2.name, "Mani"); printf(" Name : %s \n", record2.name); strcpy(record2.subject, "Physics"); printf(" Subject : %s \n", record2.subject); record2.percentage = 99.50; printf(" Percentage : %f \n", record2.percentage); getch(); } BACK

9 Result BACK

10

11

12 BACK TO INDEX


Download ppt "UNIONS IN C.  Union Data Type Union Data Type  Defining of Union Defining of Union  Memory Space Allocation Memory Space Allocation  Example of Union."

Similar presentations


Ads by Google