+ Reply to Thread
Results 1 to 10 of 12

Threaded View

  1. #1
    Join Date
    Oct 2009
    Posts
    120
    Points
    835,205.69
    Rep Power
    193

    Default Re: SonniE's C++ Tutorial

    Hey can you explain what the hell is going on please? lol =]

  2. #2
    Join Date
    Jan 2008
    Location
    PA
    Posts
    1,164
    Points
    4,213,719.25
    Rep Power
    222

    Default Re: SonniE's C++ Tutorial

    Quote Originally Posted by TheEliteOne View Post
    Hey can you explain what the hell is going on please? lol =]
    do you have a specific question?


    Get Vip: »Here«
    Donate: »Here«
    >>List of Compilers<<
    >>SFDM Name Generator<<
    [Owner Of FluidCoding]

  3. #3
    Join Date
    Oct 2009
    Posts
    120
    Points
    835,205.69
    Rep Power
    193

    Default Re: SonniE's C++ Tutorial

    Quote Originally Posted by SonniE View Post
    do you have a specific question?
    Okay, I've made a Hello World app for the PSP in C following a guide before I know one or two things

    /*
    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");
    }
    I know about // and /* */ for ignoring lines and stuff, it's this stuff that I get lossed at (This is very sad I know it =| )

    #include <iostream>

    using namespace std;

    int main()
    {
    cout<<"Hello World";
    system("pause");
    }
    Is { used to start a function and } used to end a function?

+ Reply to Thread

Posting Permissions

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