#include<iostream>

#include<queue>

using namespace std;

int main(){

    queue<string>q1;

    q1.push("Anup Tirkey is a SAI Mechanical Engineer , NIT.");
    q1.push("Kindly identify ide i.e SPM of mycompiler.");
    q1.push("Thanks for provide Platform");
    q1.push("Kindly disclose identity of IDE");
    q1.push("Thanks for cooperative effort.");
    q1.push("Anup Tirkey is in 10 y in cooperate.");
    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: