#include #include using namespace std; struct dob { string firstName; string lastName; int age; }; void b(dob *p); int main() { dob c{"Eric", "Rojas", 32}; b(&c); return EXIT_SUCCESS; } void b(dob *p) { cout << "The structure containing \n" <<"Name " << p->firstName << " " << p->lastName << " " << p->age << ".\n"; }