#include <iostream>

#include<queue>

using namespace std;

int main(){

    queue<string>int1;

    int1.push("Anup Tirkey is a SAI, Mechanical Engineer , NIT.");

    int1.push("Anup Tirkey is a NIT.");

    int1.push("Hello Taiwan Acer.");

    int1.push("Show the mechanical constraint reporting to Anup TIrkey in SYstem.");

    while(!int1.empty()){

        cout<<int1.front()<<endl;

        int1.pop();
    }

    return 0;

}

Embed on website

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