Thread: Looking for an easy to understand C/C++ Programming book.

  1. #16
    Registered User
    Join Date
    May 2002
    Posts
    2

    Wow! What a response.

    I want to thanks all of you for your help on this. All these responses, I'm gonna have to devote an afternoon to going to some book stores to check these titles out.

  2. #17
    Code Warrior
    Join Date
    Nov 2001
    Posts
    669
    Shadow
    They work, but I have warnings in .NET studio set to LEVEL 4 and so I get few warnings for your code. That's all.
    Current projects:
    1) User Interface Development Kit (C++)
    2) HTML SDK (C++)
    3) Classes (C++)
    4) INI Editor (Delphi)

  3. #18
    Unleashed
    Join Date
    Sep 2001
    Posts
    1,765
    > They work, but I have warnings in .NET studio set to LEVEL 4 and so I get few warnings for your code. That's all.
    Look at Prelude's reply on the text coloring topic.
    I converted it to C .. sorta.
    The world is waiting. I must leave you now.

  4. #19
    Code Warrior
    Join Date
    Nov 2001
    Posts
    669
    SetConsoleTextAttribute function is declared as
    "BOOL SetConsoleTextAttribute (HANDLE, WORD)", but you declared it as "int SetColor (HANDLE, char *)". The int is OK and the HANDLE is OK too, but the char * is not OK. And you forget to return the value.
    Current projects:
    1) User Interface Development Kit (C++)
    2) HTML SDK (C++)
    3) Classes (C++)
    4) INI Editor (Delphi)

  5. #20
    Unleashed
    Join Date
    Sep 2001
    Posts
    1,765
    I stand corrected, and so do my source files.

    Thanks for pointing that out GaPe.
    The world is waiting. I must leave you now.

  6. #21
    i dont know Vicious's Avatar
    Join Date
    May 2002
    Posts
    1,200

    New Book

    C++ Black Book

    Goes from Hello to Vectors...

    Really neat stuff in that book, GO GET IT NOW at Books-a-Million
    What is C++?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Looking for a c++ book, didn't were to post this...
    By Rune Hunter in forum C++ Programming
    Replies: 6
    Last Post: 09-24-2004, 06:32 PM
  2. Replies: 5
    Last Post: 09-19-2004, 06:52 AM
  3. Must read book!
    By RealityFusion in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 07-15-2004, 09:05 PM
  4. Should i get a new reference book?
    By Raison in forum Windows Programming
    Replies: 2
    Last Post: 06-15-2004, 10:43 PM
  5. C++: Reference Book, GUI, Networking & Beyond
    By kuphryn in forum C++ Programming
    Replies: 4
    Last Post: 11-10-2001, 08:03 PM