Thread: MS Visual C++ Express

  1. #1
    Registered User
    Join Date
    Dec 2006
    Location
    Jacksonville, AR
    Posts
    91

    Smile MS Visual C++ Express

    Hey, all!
    Is Microsoft Visual C++ Express a good compiler to start on? I am new in C++ and consider myself almost new in this whole programming thing. I did my last program 10 years ago, in C and Turbo Pascal.
    Ooops, while I'm at it, does any of you guys still use Pascal? I enjoyed using that program...
    Thanks and best regards..

  2. #2
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    28,413
    The compiler that comes with Microsoft Visual C++ 2005 Express is reasonably good in terms of standards compliance, and I think that it should be fine to start with.
    Quote Originally Posted by Bjarne Stroustrup (2000-10-14)
    I get maybe two dozen requests for help with some sort of programming or design problem every day. Most have more sense than to send me hundreds of lines of code. If they do, I ask them to find the smallest example that exhibits the problem and send me that. Mostly, they then find the error themselves. "Finding the smallest program that demonstrates the error" is a powerful debugging tool.
    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  3. #3
    Registered User
    Join Date
    Jan 2005
    Posts
    7,366
    Just make sure you are creating an empty Win32 console application. You do not want CLR, manged C++, C++/CLI, C++ .NET, etc. You want plain, standard C++ which you get by creating an emtpy Win32 Console Application project.

    As long you do that, VC++ Express is a great tool.

  4. #4
    Registered User
    Join Date
    Dec 2006
    Location
    Jacksonville, AR
    Posts
    91

    Smile

    Quote Originally Posted by Daved
    Just make sure you are creating an empty Win32 console application. You do not want CLR, manged C++, C++/CLI, C++ .NET, etc. You want plain, standard C++ which you get by creating an emtpy Win32 Console Application project.

    As long you do that, VC++ Express is a great tool.
    Thanks for your info but I'm not sure I can follow. What is a Win32 Console Application project and how do I exactly create it?

  5. #5
    Registered User Tonto's Avatar
    Join Date
    Jun 2005
    Location
    New York
    Posts
    1,465
    In VC++ 2005, you would do something like

    New -> Project -> Win32 -> Win32 Console Project

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. We Got _DEBUG Errors
    By Tonto in forum Windows Programming
    Replies: 5
    Last Post: 12-22-2006, 05:45 PM
  2. C++ std routines
    By siavoshkc in forum C++ Programming
    Replies: 33
    Last Post: 07-28-2006, 12:13 AM
  3. load gif into program
    By willc0de4food in forum Windows Programming
    Replies: 14
    Last Post: 01-11-2006, 10:43 AM
  4. Errors with including winsock 2 lib
    By gamingdl'er in forum C++ Programming
    Replies: 3
    Last Post: 12-05-2005, 08:13 PM
  5. Learning OpenGL
    By HQSneaker in forum C++ Programming
    Replies: 7
    Last Post: 08-06-2004, 08:57 AM