structure array of c++

#include <iostream>
using namespace std;
struct date{
char name[40];
int date;
int month;
int year;


};
struct date dob[3];
int main(){
cout<<"Welcome to my array of struct!!!" <<endl;
for(int i=0; i<3; i++){
cout<<"Date of birth  "<<i+1<<" name:"; cin>>dob[i].name;
cout<<" Date of birth # "<<i+1<<"day:";cin>>dob[i].date;
cout<<"Date of birth # "<<i+1<<"Month:"; cin>>dob[i].month;
cout<<"Date of birth # "<<i+1<<"Year:"; cin>>dob[i].year;
}
cout<<"\n No" <<"\t Name"<<"\t Day"<<"\t Month"<<"\t Year"; cout<<endl;
for(int i=0; i<3;i++){
cout<<i+1<<"\t"<<dob[i].name<<"\t"<<dob[i].month<<"\t"<<dob[i].year;
cout<<endl;
}
return 0;
}

#include <iostream>
using namespace std;
 struct date{
     char name[10];
     char six[1];
     int day, month, year;
        
 };
struct date per[2];
int main(){
    cout<<"Wellcome structure array";
    for(int i=0; i<2; i++){
        cout<<"\n"<<i+1<<"Name:";cin>>per[i].name;
        cout<<"Six:"; cin>>per[i].six;
        cout<<"Day:"; cin>>per[i].day;
        cout<<"Month:";cin>>per[i].month;
        cout<<"Yer:";cin>>per[i].year;
       
    }
    cout<<"\n Name"<<"\t Six"<<"\t Day"<<"\t Month"
    <<"\t Year"; cout<<endl;
    for(int i=0; i<2; i++){
        cout<<i+1<<"\t"<<per[i].name<<"\t"<<per[i].six
    <<"\t"<<per[i].day<<"\t"<<per[i].month<<"\t"<<per[i].year;
    cout<<endl;
    }
   
    return 0;
}

Post a Comment

0 Comments