#include #include using namespace std; struct Survey { string Lname; string Fname; char PorC; }; int main(void) { struct Survey mysurvey; struct Survey * LargeSurvey; struct Survey survey[100]; LargeSurvey = new Survey[100]; survey[0].Lname = "James"; cout << survey[0].Lname << endl; mysurvey.Lname = "Brown"; mysurvey.Fname = "David"; mysurvey.PorC = 'P'; LargeSurvey[0].Lname = "Jones"; LargeSurvey[0].Fname = "Mike"; /* this copies the element 0 of LargeSurvey to element 1 of LargeSurvey */ LargeSurvey[1] = LargeSurvey[0]; /* print the contents of mysurvey to the screen */ /* print the contents of the 1st element of LargeSurvey to the screen */ return 0; }