#include<iostream>

#include<queue>

using namespace std;

int main(){
    queue<string>q1;
    q1.push("Anup Tirkey.");
    q1.push("Mechanical Engineer.");
    q1.push("Anup Tirkey is SAI, Engineer.");
    q1.push("NIT.");
    q1.push("Please identify ide.");
    q1.push("Anup TIrkey is in 10 Y Corporate.");
    q1.push("Please identify mechanical Constraint reporting to Anup Tirkey in System.");
    q1.push("hello Taiwan Acer.");
    while(!q1.empty()){
        cout<<q1.front()<<"\n";
        q1.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: