#include<iostream>

#include<queue>

using namespace std;

void function(){

    string food = "pizza";

    cout<<food<<"\n";
    cout<<&food<<"\n";

}
void pointer(){
    string name = "Anup Tirkey";

    cout<<name<<"\n";
    cout<<&name<<"\n";
}

void pointer1(){
    string name = "shashi priyanka Tirkey";

    cout<<name<<"\n";
    cout<<&name<<"\n";
}

int main(){

    queue<string>d1;

    d1.push("Anup Tirkey");
    d1.push("Mechanical ENgineer.");
    d1.push("NIT");
    while(!d1.empty()){
        cout<<d1.front()<<endl;
        d1.pop();
    }
    function();
    pointer();
    pointer1();
    return 0;
}

Embed on website

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