C++ compilers (sorry, this is only forum i know of)
-
- Posts: 7
- Joined: Fri Apr 09, 2004 3:16 pm
C++ compilers (sorry, this is only forum i know of)
Hi, does anyone know of a good C++ compiler? If yes, please give me the URL.
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere
i assume as you are looking for URL's you are not planning on purchasing a compiler
probably the best compiler is Micro$oft Visual Studio but this is hugely expensive
for free options why not try out dev C++ or borlands c++ builder both of which can be found by a quick search on google.
It is also worth while trying a search on www.sourceforge.net as there a probably new compilers coming out which are still in development and i often find that open source tools are as good if not better than commercial products.
probably the best compiler is Micro$oft Visual Studio but this is hugely expensive
for free options why not try out dev C++ or borlands c++ builder both of which can be found by a quick search on google.
It is also worth while trying a search on www.sourceforge.net as there a probably new compilers coming out which are still in development and i often find that open source tools are as good if not better than commercial products.
Actually, Microsoft Visual C++ .NET Standard is only $109 USD, and is available at many typical office and electronics supply stores. (I will probably be purchasing this myself sometime this week...)
In the Freeware realm, there is:
MinGW Compiler, which is used by DevC++
Borland BCC Compiler
Cygwin
.. and more.
In the Freeware realm, there is:
MinGW Compiler, which is used by DevC++
Borland BCC Compiler
Cygwin
.. and more.
-
- Posts: 12
- Joined: Sun Nov 28, 2004 3:07 pm
Yea: I'm getting it for Christmas, and it cost about £80 from Amazon.co.uk, I think.Whirl wrote:Actually, Microsoft Visual C++ .NET Standard is only $109 USD, and is available at many typical office and electronics supply stores. (I will probably be purchasing this myself sometime this week...)
Student version is £40 or something, but there's a complicated registering system to prove you're a student, etc, etc... and so it might not be worth the trouble.
#include <iostream>
int main()
{
std::cout << "why can't you use Dev c++ like us normal folk?!\n";
system("PAUSE");
return 0;
}
It seriously says something when you find speaking in basic code pleasurable
anyone wanna make an addition? an auto arklari flogger is welcome.
The best compiler very much depends on why you need one, I suggest anyone learning c++ to stick with Dev c++, it's friendly, it doesn't require scary added steps, and it's a nice enviroment, if you're experienced, go with visual.net, but I wouldn't dare touch it for learning.
Dev c++, free, full compiler, no fuss, no monkeys.
int main()
{
std::cout << "why can't you use Dev c++ like us normal folk?!\n";
system("PAUSE");
return 0;
}
It seriously says something when you find speaking in basic code pleasurable
anyone wanna make an addition? an auto arklari flogger is welcome.
The best compiler very much depends on why you need one, I suggest anyone learning c++ to stick with Dev c++, it's friendly, it doesn't require scary added steps, and it's a nice enviroment, if you're experienced, go with visual.net, but I wouldn't dare touch it for learning.
Dev c++, free, full compiler, no fuss, no monkeys.
- Fudrake
- Posts: 244
- Joined: Sat Oct 04, 2003 6:18 am
- Location: UK, Europe, Northern Hemisphere, Earth, Solar System, Milky Way, the only universe we know of ;)
Even I have Dev C++, even though I don't use it cos I program java It may be terribly outdated but I do have 4.9.8.0!
For the duration I was *trying* to learn C++ using Dev C++, I liked it. As Nigel says, it is quite a nice learning environment. and it IS free.
In fact, it looks like the C++ parallel to JCreator, which is quite a nice Java IDE.
For the duration I was *trying* to learn C++ using Dev C++, I liked it. As Nigel says, it is quite a nice learning environment. and it IS free.
In fact, it looks like the C++ parallel to JCreator, which is quite a nice Java IDE.
Microsoft has a free compiler, it is a beta version, but ever had a non beta version, mentioning the blue screens e.g.
Visual C++ 2005 Express Beta
http://lab.msdn.microsoft.com/express/v ... fault.aspx
Visual C++ 2005 Express Beta
http://lab.msdn.microsoft.com/express/v ... fault.aspx
- Magicfinger
- Staff
- Posts: 1078
- Joined: Tue Sep 30, 2003 10:38 am
- Location: here,there and everywhere