Thread: the next step

  1. #1
    Registered User
    Join Date
    Mar 2004
    Posts
    113

    the next step

    hi,
    after finish my c++ book 1 year later

    now i cant decide what should be my next step,

    my logic says win32 programming but i dont feel really good turning back to c, pluss i checked some info about win32 and the experts says that in the next windows version win32 programming will be out, if i go to MFC the experts says i must win32 first, .
    if i decide to unix , i dont know how mutch future i have programming on unix,

    so will be helpull for me to hear the others comments , sugestions, experinces, etc

    thanks in advance and plase excuse my poor english

    btw, for newbies trying to figure out wich book to buy for learning c++ try "c++ how to program" by deitel, is damn good and complete, but of course no one book can teach you all, sometimes you will get lost with the book, but we have a jewel :
    "this formun" i think was the best tool to finish my c++ course 1 year later.
    cheers and thanks to all the people that helped me in this forum to finish my task

  2. #2
    Registered User
    Join Date
    Sep 2004
    Posts
    719
    i don't think learning win32 will be a waste of time...i'm sure it will be a good foundation for this 'next version' you speak of...i doubt windows will redo their entire api any time soon anyway....i mean hell, they're like 4 years behind on their new filesystem and they still won't have it ready for the next windows release...
    i seem to have GCC 3.3.4
    But how do i start it?
    I dont have a menu for it or anything.

  3. #3
    Registered User jlou's Avatar
    Join Date
    Jul 2003
    Posts
    1,090
    If you want to be a good programmer, consider focusing on design patterns, algorithms, data structures, etc. These are considered good books to continue on to:

    I personally think you can learn to make Windows GUI apps using other languages like VB, C#, Java or whatever. I would focus your C++ learning on advanced C++ topics like the ones in the books mentioned above.

  4. #4
    Registered User
    Join Date
    Mar 2004
    Posts
    113
    good points thanks a lot

  5. #5
    Hardware Engineer
    Join Date
    Sep 2001
    Posts
    1,398

    Exclamation C, C++ and Win32

    my logic says win32 programming but i dont feel really good turning back to c
    Here's the deal... The Win32 API library doesn't require C++. Petzold uses C in his examples. But, he is showing you how to make a nice GUI interface, and how to use the Win32 API. He's not trying to show you how to make your underlying program do anything useful.

    The Win32 API is a bunch of functions, structures, typedefs, and constants. You can use these in a C++ program with classes/objects, STL, etc., just as easily as you can use them in a C program. (You will have to use some C-style strings.)

  6. #6
    Registered User
    Join Date
    Mar 2004
    Posts
    113
    ok will check mr perzold's book
    thanks

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. debugging - step into issue
    By barneygumble742 in forum C++ Programming
    Replies: 7
    Last Post: 03-15-2009, 12:30 PM
  2. recursion
    By paulmedic555 in forum C Programming
    Replies: 26
    Last Post: 01-28-2005, 12:43 AM
  3. robot step sizes
    By n00by in forum C Programming
    Replies: 2
    Last Post: 04-29-2004, 03:29 PM
  4. step by step debug != run debug
    By bonkey in forum Windows Programming
    Replies: 8
    Last Post: 09-09-2002, 12:55 PM
  5. this sites Compiler Resources Specs.
    By Powerfull Army in forum C++ Programming
    Replies: 9
    Last Post: 07-08-2002, 06:12 PM