The person class is an illustration of constructors;
Constructors in programs are used to create and initialize valid values to the data members of an object
The class and the constructor program written in C++ programming language is as follows:
#include <iostream>
#include <ctime>
#include <string>
using namespace std;
class Person{
The complete program is added as an attachment
Read more about C++ programs at:
https://brainly.com/question/13168905
#SPJ1