#include #define SIZE 32 class Employee { public: char name[SIZE]; // full name char ss[SIZE/2]; // social security no. unsigned age; float salary; }; /* int main() { Employee a = {"John Doe", "0001234567", 25, 1345.67}; Employee b = {"Mary Lou", "0003335555", 39, 2013.00}; float *f_ptr; unsigned *u_ptr; char (*str_ptr)[SIZE/2]; f_ptr = &a.salary; u_ptr = &a.age; str_ptr = &a.ss; cout << *u_ptr << *f_ptr << *str_ptr; } */