12.7 Terminal Questions
Write a C++ nested structure for the record given h
appropriate data type.
given below. Use
Date of birth
Roll no
Name
Day
Month
Year
Assign value to all the members of the structure.
Answers
Answered by
1
class Stud
{
int DOB;
int rall;
char name [20];
int month;
int year;
};
Similar questions