I'm new to c++ Programming

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

    I'm new to c++ Programming

    I'm new to c++ programming. Can anyone give me some code examples on
    how to do somestuff, or tips any info would be nice...
  • Pete C.

    #2
    Re: I'm new to c++ Programming

    SkyIsland wrote:[color=blue]
    > I'm new to c++ programming. Can anyone give me some code examples on
    > how to do somestuff, or tips any info would be nice...[/color]

    Google for the online book "Thinking in C++" by Bruce Eckel, which is
    availible free and legally on the author's website.

    - Pete


    Comment

    • Mike Wahler

      #3
      Re: I'm new to c++ Programming

      "SkyIsland" <cplusplus_rule s@yahoo.com> wrote in message
      news:40400e22.0 406101100.21b13 e84@posting.goo gle.com...[color=blue]
      > I'm new to c++ programming. Can anyone give me some code examples on
      > how to do somestuff, or tips any info would be nice...[/color]

      Code example of how to do somestuff:

      void somestuff()
      {
      }

      int main()
      {
      somestuff();
      return 0;
      }

      Tip:

      Many much more useful code examples are available
      in any good C++ textbook. See the book reviews
      at www.accu.org for ideas.

      Info:
      It's in the books.

      -Mike


      Comment

      • David Harmon

        #4
        Re: I'm new to c++ Programming

        On 10 Jun 2004 12:00:29 -0700 in comp.lang.c++,
        cplusplus_rules @yahoo.com (SkyIsland) wrote,[color=blue]
        >I'm new to c++ programming. Can anyone give me some code examples on
        >how to do somestuff, or tips any info would be nice...[/color]

        This issue is covered in Marshall Cline's C++ FAQ. It is always good to
        check the FAQ before posting. You can get the FAQ at:


        See the welcome message posted twice per week in comp.lang.c++ or
        available at http://www.slack.net/~shiva/welcome.txt

        Comment

        Working...