Thread: Starting C++ - questions

  1. #1
    Registered User
    Join Date
    Dec 2006
    Posts
    3

    Starting C++ - questions

    Hi, I am planning to start C++, and I have just downlaoded the program below..

    http://www.download.com/Bloodshed-De...ml?tag=lst-4-4

    Is bloodshed dec c++ a good program?

  2. #2
    Registered User
    Join Date
    Jan 2005
    Location
    Estonia
    Posts
    131
    yes, it gives you a good start. you don't have to compile programs from the command line, just push F9. And the program itself looks nice.

  3. #3
    Its hard... But im here swgh's Avatar
    Join Date
    Apr 2005
    Location
    England
    Posts
    1,688
    Use it as an inductory tool, but when you get efficent and want to code somthing big like a game for example, I highly recomend somthing else. Bloodshed software have discontinued devc++ production, 4.992 begin the final version. It still is a very good IDE with a standard compliant compiler, but it also has a few bugs which are bound to show their faces sooner or later.

    I recomend when u switch go with MS or code::blocks is quite good too
    Double Helix STL

  4. #4
    Registered User
    Join Date
    Aug 2006
    Posts
    163
    Dev C++ is the perfect starting IDE, so good choice. When you're ready to move on to multi file or OOP, then you'll want to switch to something like Code::Blocks.

  5. #5
    Registered User
    Join Date
    Dec 2006
    Location
    Jacksonville, AR
    Posts
    91
    I recomend when u switch go with MS or code::blocks is quite good too
    What exactly are MS or code::blocks? Pardon me please, I'm the ultimate beginner here..
    Thanks..

  6. #6
    Hurry Slowly vart's Avatar
    Join Date
    Oct 2006
    Location
    Rishon LeZion, Israel
    Posts
    6,788
    MS is Microsoft. they have now a free IDE http://msdn2.microsoft.com/en-us/visualc/aa336404.aspx

    CodeBlocks: http://www.codeblocks.org/
    All problems in computer science can be solved by another level of indirection,
    except for the problem of too many layers of indirection.
    – David J. Wheeler

  7. #7
    Registered User
    Join Date
    Sep 2005
    Posts
    142
    Quote Originally Posted by tauschke
    Hi, I am planning to start C++, and I have just downlaoded the program below..

    http://www.download.com/Bloodshed-De...ml?tag=lst-4-4

    Is bloodshed dec c++ a good program?
    i'm still a noob but and i have been programming c++ for 2 years now, i started with this programm and i still use it, it's simple to use and is great for a beginner
    WhAtHA hell Is GoInG ON

  8. #8
    Registered User
    Join Date
    Dec 2006
    Posts
    11
    Hi, Dev-C++ is what i'm using right now. I like it; it's a good program.

  9. #9
    Cat without Hat CornedBee's Avatar
    Join Date
    Apr 2003
    Posts
    8,895
    If you use Dev-C++, be sure to read this:
    http://faq.cprogramming.com/cgi-bin/...&id=1043284385
    All the buzzt!
    CornedBee

    "There is not now, nor has there ever been, nor will there ever be, any programming language in which it is the least bit difficult to write bad code."
    - Flon's Law

  10. #10
    Registered User
    Join Date
    Dec 2006
    Location
    Washington
    Posts
    18
    Quote Originally Posted by swgh
    I recomend when u switch go with MS or code::blocks is quite good too
    Never trust anyone who recommends Micro$haft tools!

    ...Microsoft (which means extremely small and flacid!) has a nasty habbit of ensuring that their software runs only on their platforms and those that they choose to support, such as Mac OS. You won't find Word for UNIX, for example.

    If you want STANDARDS conformant tools, stick with GNU. Just be sure not to use any of the GNU extensions in your code.


    :davis:

  11. #11
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,659
    Visual Studio Express is one of the most ISO/ANSI standard compliant compilers you can get for C++.

    > Just be sure not to use any of the GNU extensions in your code.
    Which is true of any compiler, if you care about portability.

    GNU is no different from MS in that the default behaviour is in "extension mode"
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  12. #12
    Registered User
    Join Date
    Dec 2006
    Posts
    11
    If you use Dev-C++, be sure to read this:
    http://faq.cprogramming.com/cgi-bin/...&id=1043284385
    don' forget:


    system("PAUSE");

  13. #13
    MFC killed my cat! manutd's Avatar
    Join Date
    Sep 2006
    Location
    Boston, Massachusetts
    Posts
    870
    Yeah, if you want to be non-portable. Better options are in the link.
    Silence is better than unmeaning words.
    - Pythagoras
    My blog

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. questions....so many questions about random numbers....
    By face_master in forum C++ Programming
    Replies: 2
    Last Post: 07-30-2009, 08:47 AM
  2. Interpreter.c
    By moussa in forum C Programming
    Replies: 4
    Last Post: 05-28-2008, 05:59 PM
  3. Replies: 10
    Last Post: 11-23-2007, 12:13 AM
  4. A very long list of questions... maybe to long...
    By Ravens'sWrath in forum C Programming
    Replies: 16
    Last Post: 05-16-2007, 05:36 AM
  5. Trivial questions - what to do?
    By Aerie in forum A Brief History of Cprogramming.com
    Replies: 23
    Last Post: 12-26-2004, 09:44 AM