Results 1 to 10 of 12

Threaded View

  1. #9
    Join Date
    Oct 2009
    Posts
    120
    Points
    794,334.69
    Rep Power
    191

    Default Re: SonniE's C++ Tutorial

    Lol

    /*
    SonniE's Hello World C++ Example 1
    This Program Shows basic console printing skills
    */
    #include <iostream>

    using namespace std;

    int main()
    {
    cout<<"Hello World";
    system("pause");
    }
    You should have used this: (Less sloppy)

    /*
    SonniE's Hello World C++ Example 1
    This Program Shows basic console printing skills
    */
    #include <iostream>

    using namespace std;

    int main()
    {
    cout<<"Hello World\n";
    system("pause");
    }
    Other wise it's like this:

    Last edited by TheEliteOne; 03-19-2010 at 12:32 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts