#include<iostream>

#include<queue>

using namespace std;

struct
{
    string a1;
    int    age;
    int    sal;
    string m1;
    string profess;
    string home;
    string v;
    string preach;
}struct1,struct2,struct3,struct4;

int main(){

    queue<string>q1;

    q1.push("Anup");
    q1.push("Kumar");
    q1.push("Tirkey");
    q1.push("NIT");
    while(!q1.empty()){
        cout<<q1.front();
        q1.pop();
    }

    //structure1

    struct1.a1 =" Anup Kumar";
    struct1.age = 35;
    struct1.sal = 80000;
    struct1.profess = "operation officer";
    struct1.home = "ranchi";
    struct1.v = "yes Anup is have Car";
    struct1.preach = "be humble";

    cout<<struct1.a1<<"\n";
    cout<<struct1.age<<"\n";
    cout<<struct1.profess<<"\n";
    cout<<struct1.home<<"\n";
    cout<<struct1.v<<"\n";
    cout<<struct1.preach<<"\n";
    //structure 2

    struct2.a1 = "shahsi priynaka";
    struct2.age = 33;
    struct2.sal = 25000;
    struct2.m1 = "married";
    struct2.profess = "housewife";
    struct2.home = "ranchi";
    
    cout<<struct2.a1<<"\n";
    cout<<struct2.age<<"\n";
    cout<<struct2.m1<<"\n";
    cout<<struct2.profess<<"\n";
    cout<<struct2.home<<"\n";
    //structure3

    struct3.a1 = "Sis Aliva";
    struct3.age = 25;
    struct3.home = "ranchi";
    
    cout<<struct3.a1<<"\n";
    cout<<struct3.age<<"\n";
    cout<<struct3.home<<"\n";
    
    //structure 4

    struct4.a1 = "sis Saneha";
    struct4.age = 29;
    struct4.m1 = "married";
    struct4.home = "ranchi";
    
    cout<<struct4.a1<<"\n";
    cout<<struct4.age<<"\n";
    cout<<struct4.m1<<"\n";
    cout<<struct4.home<<"\n";
    
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: