Question: Practice: Nested Structures concept Write a C++ program to store Student details including Date of Birth and Residence address using nested structures concept. You should

Practice: Nested Structures concept Write a C++ program to store Student details including Date of Birth and Residence address using nested structures concept. You should define three structures, The Date structure holds date of birth of Student using following data, int month int day; int year; The Place Structure holds a physical address using following data, string address string city string state string zip The Studentinfo structures holds Student's data using following data, string name, int StudentiDno; Date birthDate Place residence; //Nested structure from Date I/Nested structure from Place Your program should (i) Accept user input for each variable splay all the Student details
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
