Electrical and Computer Engineering
8 of 17
UAH
CPE 112
More About struct Declarations
•You can declare variable names within the struct declaration.
•Example:
•        struct StudentRec
•     {
•         string firstName;
•         string lastName;
•            .
•            .
•            .
•     } firstStudent, student;
•     
•