Where can you download c++

I searched for c++ a long time and i can't find a download.
so if someone knows where to download it, thanks.
C++ is not a program you can download. C++ is a programming language. The language is defined on a paper document.

You write programs in the C++ language; plain text files.

You then pass these plain text files to a special program called a C++ compiler. The C++ compiler will take in these txt files you wrote, and will give back to you the working program, ready to run on your PC.

If you want to write programs in C++, you will need to get a C++ compiler. Some C++ compilers come with something called an IDE. An IDE is a program that makes it easier for you to write the text files and to use the compiler.

Here are some IDE options:

1- Code::Blocks -> http://www.codeblocks.org/downloads
2- Visual Studio C++ Express -> http://www.microsoft.com/express/Downloads/#2010-Visual-CPP
3- Netbeans -> http://netbeans.org/downloads/
4- Eclipse (CDT) -> http://www.eclipse.org/cdt/downloads.php
5- QT Creator -> http://qt.nokia.com/downloads (scroll down a bit to download it as a standalone)
Last edited on
Thank you very much now i know how to use it.
Topic archived. No new replies allowed.