Unit-IV (Difference Between Structure and Union)
Unit-IV (Difference Between Structure and Union)
STRUCTURE
A structure is a user-defined data type available in C that allows to combining data items of different kinds.
Structures are used to represent a record.
Defining a structure: To define a structure, you must use the struct statement. The struct statement defines a
new data type, with more than or equal to one member. The format of the struct statement is as follows:
struct [structure name]
{
member definition;
member definition;
...
member definition;
};
UNION
A union is a special data type available in C that allows storing different data types i n the same memory
location. You can define a union with many members, but only one member can contain a value at any given
time. Unions provide an efficient way of using the same memory location for multiple purposes.
Defining a Union: To define a union, you must use the union statement in the same way as you did while
defining a structure. The union statement defines a new data type with more than one member for your
program. The format of the union statement is as follows:
DIFFERENCES:
#include <stdio.h>
#include <string.h>
// declaring structure
struct struct_example
int integer;
float decimal;
char name[20];
};
// declaring union
union union_example
{
int integer;
float decimal;
char name[20];
};
void main()
// six
printf("structure data:\n integer: %d\n" "decimal: %.2f\n name: %s\n", s.integer, s.decimal, s.name);
printf("\nunion data:\n integer: %d\n" "decimal: %.2f\n name: %s\n", u.integer, u.decimal, u.name);
// difference five
s.integer = 183;
s.decimal = 90;
strcpy(s.name, "geeksforgeeks");
printf("structure data:\n integer: %d\n " "decimal: %.2f\n name: %s\n", s.integer, s.decimal, s.name);
u.integer = 183;
u.decimal = 90;
strcpy(u.name, "geeksforgeeks");
printf("\nunion data:\n integer: %d\n " "decimal: %.2f\n name: %s\n", u.integer, u.decimal, u.name);
printf("\nstructure data:");
s.integer = 240;
s.decimal = 120;
u.integer = 240;
u.decimal = 120;
//difference four
s.integer = 1218;
printf("structure data:\n integer: %d\n " " decimal: %.2f\n name: %s\n",
s.integer, s.decimal, s.name);
u.integer = 1218;