#include struct teacher { int age; int dd; }; struct student { int age; char grade; teacher one; }; int main() { teacher two,*pt; student three[10]; two.dd=3; two.age=30; pt->dd=5; pt->age=35; three[0].grade='A'; three[1].grade='C'; three[2].one.dd=5; cout<age<<"\n"; cout<