09-26-2010, 06:22 AM
Pages: 1 2
09-26-2010, 10:44 AM
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......
10-01-2010, 09:00 AM
First of all, use this: http://www.microsoft.com/express/Downloa...Visual-CPP
and second, change your code into this:
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;
}
10-03-2010, 07:32 AM
Cygwin is a C++ compiler no ?
10-04-2010, 04:27 PM
I would defentaly try C++ that is what i use
10-06-2010, 04:54 PM
DevC++ is the way to go, maybe you dont have the right libraries and keep getting an error.
10-06-2010, 09:04 PM
(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.
10-29-2010, 02:46 PM
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