GrumPy wrote: » Cheers, running windows though!
karlr42 wrote: » No problem! And you'll get cygwin, really handy
Deserved wrote: » Try Microsoft Visual C++ 2008 Enterprise edition, it's completly free and IMHO the best.
Red Alert wrote: » Bloodshed's the best, but I've had some hassle using it on some 64-bit machines. Eclipse will also do C/C++ but I think you may have to install the command line GNU compiler separately, not sure on that one.
Feelgood wrote: » Yep Bloodshed or Dev C++ is the sh1t alright....
Deserved wrote: » It's a valid command: #include <iostream> using namespace std; int main() { cout << "Hellow world"; return 0; } But not for: #include <iostream> using namespace std; void main() { cout << "Hellow world"; }
askU wrote: try: #include <stdio.h> int main(void) { printf("Hi"); getchar(); getchar(); return 0; }
Webmonkey wrote: » Well in C anyways having a void main function is strictly in correct as it should return some return value back out to the console. Thats what I like with Dev Cpp, doesn't allow you to do stuff that shouldn't be allowed. We're talking C++ here, not C
GrumPy wrote: » Have bloodshed thingy installed. Seems nice in terms of GUI, but it wont run any successfully compiled program. I am running vista btw. I have linux on dual boot, and I cant seem to get any compiler working (It's not my bad coding if that's what your thinking)
yoyo wrote: » If your in DIT just zip the BCC55 folder up (Type C: in the my computer in lab), send to your email, download when you get home, extract BCC55 folder to C:\ drive, create shortcut to the .bat (startBC.bat) file in the folder on desktrop and you have the same ide as used in college, if you like I'll throw it on rapidshare* *Perfectly legal, DIT seem to use the free Borland Compiler and the open source Scntilla? editor, just the BAT file makes it possible to compile within Scntilla Nick
GrumPy wrote: » Nice one. Do that if ya can! But will it work on my new "Linpus Linux Lite OS"?
GrumPy wrote: » But that's not the worst part, my laptop died. So I am using an acer netbook with "Linpus Linux Lite v1.0.7.E" Anyone got advice howto get a c/c++ compiler working on this?!
karlr42 wrote: » If it's linux it should have gcc installed or available. Type gcc into a terminal and see what you get