Listing 5

  void doSomething(){
    cout << "Hello Viet Nam\n";
    cout << "Hello Iraq\n";

    //Execte the loop structure.
    doLoop();

    cout << "Hello America\n";
    cout << "Hello World\n";

  }//end doSomething function

Listing 5