2013-09-03

Testing for Syntax Highlighter

This article shows my testing or Syntax Highlighter in Blogger

Thanks to:


void testSimple()  
{   
        queue q;
        setupQueue(q);

        while(! q.empty()){
                string str =  q.front();
                cout << "data=" << str << "\n";
                q.pop();
        }
}



No comments:

Post a Comment