Im new to programming and want to practice(C++), but for the next couple weeks im living away from home using a friends computer. He doesn't have a compiler on his computer though. I was wondering if by chance, if its possible to save and compile c++ files without an IDE. Ive tried saving notepad files with .cpp, but that doesn't seem to work. Sorry if i sound like a noob, or a complete idiot, just want to program.
IDEs and compilers are not the same thing. IDEs are just fancy text editors that include a compiler and a bunch of other useful features to make things easier. A compiler is a program that actually transforms source code into it's compiled form (usually used as a command line tool). So even if you don't use an IDE, you will have to download a compiler to compile your code.
If your friend is weird about you installing things on his PC, perhaps you can find a lightweight IDE that can be run from a USB drive or a Dropbox.
X Abstract X wrote:IDEs and compilers are not the same thing. IDEs are just fancy text editors that include a compiler and a bunch of other useful features to make things easier. A compiler is a program that actually transforms source code into it's compiled form (usually used as a command line tool). So even if you don't use an IDE, you will have to download a compiler to compile your code.
If your friend is weird about you installing things on his PC, perhaps you can find a lightweight IDE that can be run from a USB drive or a Dropbox.
Furthermore, most IDEs nowadays include compilers - Visual c++ 2010 for example contains a compiler for Windows Operating Systems, Qt includes one for Symbian, etc. But you could just as well edit the source code in Visual C++ and afterwards give some other compiler the code, which will create the executable for another target platform, e.g. for linux or Mac.
The only thing IDEs do is let you edit your code and by having you click the Compile and Run button passing the code to its compiler (which you can possibly set up in your IDE options menu) and executing the file that the IDE told the compiler to compile to.
Someday, everything will go to /dev/null. - Bug's prophecy 13:37
Thank you all!
That really helped me understand the difference between a compiler and an IDE. I thought a compiler was something like Visual Studio 2008.
...and I am considering saving notepad c++ on a flash drive. Otherwise i'll just aim to learn visual basic while i'm here.
You could use a command line compiler like Borland and just use a batch file to build your programs. But yeah you would have to mess with makefiles to make multiple-file programs.