I cant seem to locate a free c/c++ compiler that I can use to play with. Any ideas where a simple downloadable compiler is located? Or at least a decent online compiler?
Windows or linux? On linux you have gcc.
windows, using public library for the most part
that one looks great :) simple, easy to see, not alot of bells and whistles to try to work thru lol thnx :)
On Windows you can use GCC as well, through mingw: http://www.mingw.org/ . You can *also* use GCC through Windows via cygwin http://www.cygwin.com/ . Cygwin attempts to set up a full UNIX environment on top of Windows, completely with bash.
Use GCC and G++ which is best compiler.Python/Ruby interpreters use them.Most companies use this free software.It is cross platform.
devc++ was the first i tried, but couldnt figure out how to actually get a download :) trying the mingy thing now
It was my problem, too. LOL
Devc++ is an ide. It uses mingw for it's compiler which is a port of gnu's gcc compiler to the windows operating system.
But you don't need an ide to compile stuff and you can use mingw standalone.
Thank you Polpak:)
As for downloading devc++ it's hosted on sourceforge.net: The download page is here: http://www.bloodshed.net/dev/devcpp.html They have downloads for version 5(beta) or version 4 and you'll probably want the one that includes mingw.
in linux you don't have to download anything :)
well i get something with the ming lol, needs instructions tho :)
\(\color{red}{\small\text{gonna have to break it first :)}}\)
That's just a shell. Not the compiler.
I strongly suggest uninstalling mingw and just get and install the devcpp ide with mingw included. It should set things up much more nicely and in a way that may be more familiar to you.
oh I like the shell, more my speed :) The website says that I can write code in like notepad, save it as .cpp and compile it on the shell i believe
Yes, you can do that certainly. If you just want a nice editor without the ide I like notepad++ for windows.
the ming works great; all i gotta do now is learn proper c++ and I should be good :) thnx yall
g++ [filename.cpp] -o [filename.exe] turns on the compiler, and if it dont like your work, it tells you :)
Lemme know if you need help with the C++ =)
Use VIsual Studio C++ 2010 Express or VS 2010 Express, just download the web downloader, and this will install all the pellet you need :D It is faster coding here rather in a shell where doesn't tell ya pellet what's going on :p
Why would you want to debase my intelligence by suggesting that I would want to have anything to do with feces?
Yeah, it's fair to start with notepad, but you should graduate to a real editor or IDE within... Oh... Two or three days of effort. IDEs/editors aren't crutches, they're indispensable tools. If you're all about the console, you can use vim, which installs via cygwin or as a native Windows version at ftp://ftp.vim.org/pub/vim/pc/gvim73_46.exe or a variant that will be easier to get started with at http://cream.sourceforge.net/download.html . These are editors that were originally designed for the console (though they have GUI version as well). vim has been my bread and butter for many years, and is what I currently use to do all my development (with some various plugins). Others swear by IDEs. In that space, it may be worth trying Eclipse's C/C++ development tools at http://www.eclipse.org/downloads/packages/eclipse-ide-cc-developers-includes-incubating-components/indigor . I haven't used it too much myself. In my time developing in C++/Qt, I used KDevelop ( http://kdevelop.org/ ). You can use http://windows.kde.org/ to get it on Windows; I haven't used the latest versions much, but they're supposed to have pretty awesome tools. Additionally, towards the tail end, the makers of the Qt C++ GUI toolkit released their own IDE called Qt Creator. You can find it at http://qt.nokia.com/products/developer-tools . I haven't played with it that much. If and when you go hunting with how to build a GUI in C++, I would highly recommend Qt. I have yet to find a better GUI framework in any language, really, and whenever I did GUI work in other languages I would try to use Qt bindings for it.
you shoul try turbo c
Join our real-time social learning platform and learn together with your friends!