#include <iostream>

#include<queue>

using namespace std;

int main(){

    queue<string>len;

    len.push("Hello hyundai.");
    len.push("Hello World.");
    len.push("Hello Taiwan acer.");
    len.push("Kind Attention Taiwan Acer, Anup Tirkey, has ,PO of Acer.");
    len.push("Communique:Anup Tirkey is  relation to Jashpur region.");
    len.push("Communique :Anup Tirky is married to Shahsi Priyanka Tirkey.");
    len.push("Anup Tirkey is wife ,Shashi Priyanka Tirky.");
    len.push("Anup Tirkey is in NIT.");
    len.push("Anup Tirkey is a Mechanical Engineer.NIT.");

    while(!len.empty()){
        cout<<len.front()<<endl;
        len.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: