CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2003
    Location
    Ohio
    Posts
    2

    Question Functions and such in C++ Libraries

    I've been doing C++ for a little while, and I've got a good understanding of it, and I'm learning about char arrays and pointers now. But, I haven't used many functions or anything besides

    cin, cout, cin.getline(), and MessageBox(..)

    Anyone know some links that have tutorials on different functions files, and commands that are available in the standard C++ library?
    -Krak

  2. #2
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652
    Well...'MessageBox' is not a standard C++ function but rather a Windows API call...

    Nevertheless this should help...

  3. #3
    Join Date
    Apr 1999
    Posts
    27,449
    I've been doing C++ for a little while, and I've got a good understanding of it, and I'm learning about char arrays and pointers now
    Have you learned std::string before going into char arrays and pointers? If not, the material you have been using is vastly outdated. Modern C++ books introduce std::string way before discussion of pointers and char arrays.

    Nothing beats getting a few good books:

    "Accelerated C++" , Koenig & Moo
    "The C++ Standard Library", Nicolai Josuttis.

    If you want a "link", there is Bruce Eckel's "Thinking in C++", however this is not just a "tutorial" but an entire book on the web (I don't know what the link is at the time). Another link is the C++ FAQ at www.parashift.com.

    Also, there is no such C++ standard function as MessageBox() -- that is a Windows API function. If you want to know what comprises the C++ standard functions, get the book mentioned above, "The C++ Standard Library".

    Regards,

    Paul McKenzie

  4. #4
    Join Date
    May 2000
    Location
    Phoenix, AZ [USA]
    Posts
    1,347
    Paul McKenzie mentioned Bruce Eckel's books "Thinking in C++",
    which currently have 2 volumes. Volume 1 has been printed; both
    Volumes 1 and 2 [a work in progress] can be downloaded for free.
    He has many mirror sites for the downloads; these can all be
    gotten to from http://www.eckelobjects.com

    --Paul

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured