Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
char* str[] = {"hello", "world"};
int main()
{
queue<char*> q;
q.push( str[0]);
q.push( str[1]);
while( !q.empty()){
cout << q.front() << endl;
q.pop();
}