missing ';' what does this mean?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • SimpSity

    missing ';' what does this mean?

    I am a complete noob, what book would be the best for complete begginers, u
    know the ones that could teach a a retarted neborn monkey to program C++ thats
    the kind of thing im looking for alotr of these books throw alot of shit at ya.
    preferably a book for Ms Visual C++ 6 THX
  • Dirk Feytons

    #2
    Re: missing ';' what does this mean?

    SimpSity wrote:
    [color=blue]
    > I am a complete noob, what book would be the best for complete begginers, u
    > know the ones that could teach a a retarted neborn monkey to program C++ thats
    > the kind of thing im looking for alotr of these books throw alot of shit at ya.
    > preferably a book for Ms Visual C++ 6 THX[/color]




    And please write decent English.

    --
    Dirk

    (PGP keyID: 0x448BC5DD - http://www.gnupg.org - http://www.pgp.com)

    ..oO° [Intentionally left blank to annoy you] °Oo.

    Comment

    • jeffc

      #3
      Re: missing ';' what does this mean?


      "SimpSity" <simpsity@aol.c om> wrote in message
      news:2003100120 0542.27553.0000 0157@mb-m04.aol.com...[color=blue]
      > alotr of these books throw alot of shit at ya.[/color]

      Kind of like compilers and their wacky "missing ;" messages? Check out the
      sites recommended, but at the same time ask if C++ is the language for you,
      or whether an attitude adjustment is required.


      Comment

      • Fao, Sean

        #4
        Re: missing ';' what does this mean?

        "SimpSity" <simpsity@aol.c om> wrote in message
        news:2003100120 0542.27553.0000 0157@mb-m04.aol.com...[color=blue]
        > I am a complete noob, what book would be the best for complete begginers,[/color]
        u[color=blue]
        > know the ones that could teach a a retarted neborn monkey to program C++[/color]
        thats[color=blue]
        > the kind of thing im looking for alotr of these books throw alot of shit[/color]
        at ya.[color=blue]
        > preferably a book for Ms Visual C++ 6 THX[/color]

        Even though you never asked it in the body, a missing ';' means exactly
        that, you're missing a semicolon.

        --
        #include <iostream>

        int main()
        {
        return 0 // Wrong, missing ;
        }

        --
        #include <iostream>

        int main()
        {
        return 0; // Correct
        }

        Now onto the rest of what you said. That "shit" as you like to call it
        happens to be the C++ language. If you don't like it, find something else
        to keep your time occupied like reading up on proper Usenet etiquette.


        Comment

        • glen stark

          #5
          Re: missing ';' what does this mean?

          SimpSity wrote:
          [color=blue]
          > I am a complete noob, what book would be the best for complete begginers, u
          > know the ones that could teach a a retarted neborn monkey to program C++ thats
          > the kind of thing im looking for alotr of these books throw alot of shit at ya.
          > preferably a book for Ms Visual C++ 6 THX[/color]

          Don't. There's enough idiots pretending to be programmers already, and
          it fills the newsgroups with chaff.

          Comment

          • Frank Schmitt

            #6
            Re: missing ';' what does this mean?

            simpsity@aol.co m (SimpSity) writes:
            [color=blue]
            > I am a complete noob, what book would be the best for complete begginers, u
            > know the ones that could teach a a retarted neborn monkey to program C++ thats
            > the kind of thing im looking for alotr of these books throw alot of shit at ya.
            > preferably a book for Ms Visual C++ 6 THX[/color]

            If you have programming experience in another language, I'd recommend
            "Accelerate d C++" by Koenig&Moo.

            If you are a complete newbie to programming itself, I'd recommend starting
            with another programming language - e.g. Python or Ruby; C++ has a lot of
            pitfalls for starters.

            If you insist on starting with C++, check out www.accu.org - they've got
            tons of book recommendations .

            HTH & kind regards
            frank

            --
            Frank Schmitt
            4SC AG phone: +49 89 700763-0
            e-mail: frankNO DOT SPAMschmitt AT 4sc DOT com

            Comment

            Working...