Where could i download c++ program for free

Hi. Where i could download c++ program for free. Where have i looked allways have to pay. And which version is better. Thanks.
What do you main by "c++ program"? If you mean a compiler, I would recommend dev-cpp, wich is an IDE (http://en.wikipedia.org/wiki/Integrated_development_environment) with MinGW as compiler (http://en.wikipedia.org/wiki/Compiler). You can download it here for free: http://www.bloodshed.net/devcpp.html.
Some people prefere Visual Studios, aldo I wouldnt recommend this if you're a beginner. There're several versions of VS. You can download Visual C++ express for free: http://www.microsoft.com/express/download/.

Hope this helps.
Last edited on
Thanks for answer, but which program uses programers.
Well, programmers create programs. They write there programs in sourcecode. You can use any editor, eg notepad, to write sourcecode. Because a computer only understands his own machinelanguage, and no sourcecode, you need an compiler to create an executable file (a program) out of the sourcecode. The sourcecode is written in a certain language, such as c++, c or java. Each language has his own structures and rules about syntax etc. And for each language you need another compiler.

An IDE is a program that makes things easier for the programmer. It has a special editor in it, a compiler and several tools, like debuggers, to help the programmer.

If you want to learn how to program, I recommend you to start with reading some tutorials. The one on this site is good, and you can also look at the following sites:
http://cprogramming.com/
http://home.no.net/dubjai/win32cpptut/html/

Good luck
Last edited on
thanks. I appreciate that.
if you don't have it by now you should go to: http://www.microsoft.com/Express/
which programms you want or need .....
Check this: http://simpleprogrammingtutorials.com/tools/first-string-cpp.php It may help you to download, install and create a project in C++.
Last edited on
Topic archived. No new replies allowed.