C++ Compiler - Really Need Help!

Discussion in 'Gaming' started by .vivid, Sep 8, 2006.

  1. .vivid

    .vivid Senior Member

    Age:
    32
    Posts:
    1,038
    Likes Received:
    0
    Joined:
    Apr 14, 2005
    I have been searching for a good compiler for days and have yet to find out that works the way I need it to work.

    I have tried several free and paid compilers. I have yet to find out that will let me compile:

    Code:
    #include <iostream>
    
    using namespace std;
    
    int main()
    {
    
           cout >> "This is a test";
    
    return 0;
    }
    I really just want a compiler to try out my programs. I am doing console apps as of right now and just need a compiler to test them out with.
     
  2. Tyro

    Tyro Well-Known Member

    Age:
    30
    Posts:
    432
    Likes Received:
    0
    Joined:
    Mar 29, 2006
    Location:
    NY, USA
    I'm assuming you're using Linux, so I'll advise Dev-C++ to you. Nice and easy C++ compiler. If you don't like that one, or have problems with it as well, you might want to search "C++ Compilers" on Google. Have fun. :P
     
  3. Shock3d

    Shock3d Well-Known Member

    Posts:
    1,102
    Likes Received:
    0
    Joined:
    May 12, 2005
    Linux: DevC++
    Windows: Visual C++ 6.0
     
  4. Equivalent Exchange

    Equivalent Exchange Well-Known Member

    Posts:
    1,466
    Likes Received:
    0
    Joined:
    Nov 9, 2005
    Doesnt answer your question, but shouldnt that be <iostream.h>?

    Been awhile since my C++ class though, so I'm not sure...
     
  5. Tyro

    Tyro Well-Known Member

    Age:
    30
    Posts:
    432
    Likes Received:
    0
    Joined:
    Mar 29, 2006
    Location:
    NY, USA
    I think it's <iostream.h> in some situations, but all the beginner tuts don't use .h in <iostream> for some reason. I was wondering about that myself.. o_0
     

Share This Page