Structure and Union
Structure and Union
Structure
Structure is user defined data type .It is tool by which we can store
the data of different type like int ,float, char etc in single record. In
array we can store only same type of data but structure
encapsulates different data type variable in single record.
Syntax:
Struct [struct_type_name]
{
[type variable_name [,variable_name, …]];
[type variable_name [,variable_name, …]];
[type variable_name [,variable_name, …]];
………………………………………………….
………………………………………………….
} [structure_variable_name];
Here label which has written inside the [ ] are optional.
Example:
struct book
{
char *title;
int page;
int pub_year;
float price;
}book1,book2;
list.title=”C programming”;
list.price=300.0;
If structure variable is pointer type then use ->
Example:
struct *list;
list->title=”C programming”;
list->price=300.0;
note : -> is similar to (*) . so you can write (*list).price=300.0;
Instead of writing srtuct book we can give a simple name by typedef
keyword
e.g
at 7:59 AM 11 comments
/* magazine1=book1; // It is wrong
printf("%s\t%f",magazine1.title,magazine1.price); */
getch();
}
Output: Programming 40.500000
Program:
void main()
{
int i,j;
struct book
{
char *title;
float price;
};
struct book book1={"Programming",40.50},book2;
book2=book1;
if(book1==book2)
prinf("I Don't know structure");
else
printf("I Know structure");
getch();
}
Output: Compiler error
at 7:03 AM 0 comments
Tuesday, January 1, 2008
Initialization of structure member variable
Example:
void main()
{
struct account
{
int id ;
float balance;
};
struct account customer1={100,50000.0};
struct account customer2={ 1001,3000.0};
………………………………………….
……………………………………..
}
Rule1. Order and type of value must match to the member variable.
struct account customer2={5000.0,102}; //wrong initialization
Rule 2. Default value of member variable is if int the 0 ,if float then
0.0 and if char then ‘\0’
Rule 3. First value is initialized to first member function of structure
and so on;
Program:
void main()
{
int i,j;
struct book
{
char *title;
int page;
int pub_year;
float price;
};
struct book book1={"c programming"};
clrscr();
printf("%s\t%d\t%f",book1.title,book1.page,book1.price);
getch();
}
To store any type of data in structure there is minimum fixed byte which must be reserved
by memory. This minimum byte is known as word boundary. Word boundary depends upon
machine. TURBO C is based on 8086 microprocessor which has two byte word boundary. So
any data type reserves at least two byte space.
Suppose a structure word1:
struct word1
{
char a;
int b;
char c;
};
First of all char a will reserve two byte and store the data in only first byte (size of char is
one byte).Now int b(size of int two byte) will search two byte but there only byte is
available so it will again reserve next two byte of memory space. That one byte will
useless, such useless byte is know as slack byte and structure is called unbalance
structure.
How we can make structure word1 as a balance structure?
Ans:
strcut word2
{
char a;
char b;
int c;
};
First of all char a will reserve two byte and store the data in only first byte .Now char b
will search one byte and one byte is available so it will store the data in that byte. Now
int c will reserve two byte and store the data in both two bytes. Now there is not any
slack byte and we have saved wastage of memory and structure word2 is balance.
(Before executing this program first go to option menu then compiler then code
generation then select word alignment then press OK)
Program:
void main()
{
struct word1
{
char a;
int b;
char c;
};
struct word2
{
char a;
char b;
int c;
};
clrscr();
printf("%d\t%d",sizeof(struct word1),sizeof(struct word2));
getch();
}
Output: 6 4
at 6:09 AM 5 comments
Bit field: There are number of questions which have only two
answers. To store such type of data there is necessity of only one bit
either 0 or 1. Maximum child of any person must be less than 15. So
for this four binary bit is sufficient to store such information. C
introduces a powerful tool bit level programming in which we can
store data which size can be in bit. So there is not necessity to
declare int or char data type for only one or two bit data. In this
way we can save the memory space.
Syntax:
struct
{
name1:bit_length;
name2:bit_length;
…………………………………………………………………………
…………………………………………………………………………
};
must be signed or unsigned int
If it signed int then minimum bit length must be two, one for sign
and another for data.
Example:
void main()
{
struct employee
{
unsigned id: 8;
unsigned sex:1;
unsigned age:7;
};
struct employee emp1={203,1,23};
clrscr();
printf("%d\t%d\t%d",emp1.id,emp1.sex,emp1.age);
getch();
}
Output: 203 1 23
We can access the data member in same way.
How bit data is stored in the memory:
Minimum size of structure which data member in bit is two byte i.e
16 bit.This is called word size of microprocessor. Word size depends
on microprocessor. Turbo c is based on 8086 microprocessor which
word size is two byte.
Bits are filed in from right to left direction 8 bit for id,1 bit for sex
and 7 bit for age.
at 4:28 AM 0 comments
}bit;
char *p;
struct bitfield *ptr,bit1={1,3,3};
p=&bit1;
p++;
clrscr();
printf("%d",*p);
getch();
}
Output: 12
Explanation:
Binary value of a=1 is 00001 (in 5 bit)
Binary value of b=3 is 00011 (in 5 bit)
Binary value of c=3 is 000011 (in 6 bit)
In memory it is represented as:
Let address of bit1 is 500 which initialize to char pointer p. Since can is one byte data type
so p++ will be 501. *p means content of memory location 501 which is (00001100) and its
binary equivalent is 12. Hence output is 12.
at 3:51 AM 0 comments