B Lesson1-Introduction-to-Structures - 2
B Lesson1-Introduction-to-Structures - 2
B Lesson1-Introduction-to-Structures - 2
4 STRUCTURES
Example :
struct student structure name
{
char name[20];
field list
char course[5];
(structure members)
int age;
int grade;
};
//Structure Definition
struct employee
{
double hours;
double rate; // or can be written as double hours,rate, salary;
double salary;
};
//Structure Variable Declaration