Support Forums

Full Version: c++ free compiler?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
It's better if you look @ Hackforums.net for this
Visual C++, Dev C++ ,Borland C++, Turbo C++(16 bit),MinGW....there are few more too...download all (they are small in size) & check which one suites your requirement......
First of all, use this: http://www.microsoft.com/express/Downloa...Visual-CPP

and second, change your code into this:

Code:
#include <iostream>
using namespace std;

int main ()
{
    cout << "Hello World!";
    cout << "i'm a C++ program";
    cin.get()
    return 0;
}
Cygwin is a C++ compiler no ?
I would defentaly try C++ that is what i use
DevC++ is the way to go, maybe you dont have the right libraries and keep getting an error.
(10-06-2010, 04:54 PM)⌨⑂∞☢ ∃ ⊥ ∀ н ☢∞⑂⌨™ Wrote: [ -> ]DevC++ is the way to go, maybe you dont have the right libraries and keep getting an error.

Dev-C++ is most certainly not the way to go. Unless you believe using abandoned software that hasn't been updated in half a decade is a good idea. In which case I'm not sure what to tell you.

If you want to go with Dev-C++ then do yourself a favor and go with wxDev-C++. It is based directly off Dev-C++ but is current and still supported by its creator.
All my C++ college classes used Dev c++ So Im pretty sure its still ok to use. They also gave out free copies of Visual Studio and said that its a better option which is a no brainer. So if you can get your hands on Visual Studio, go for it. If not I'd go Dev C++ havent run into any problems running my code with it yet.
Pages: 1 2