theguy0000 Posted September 2, 2005 Posted September 2, 2005 does anyone know of a good *FREE* C/C++ compiler? please don't flame me about things like "not knowing what google is" or something like that, i have tried google, and whatever results come up dont work! or maybe im just stupid or something that i cant figure out how to use them thanks! The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN
SumTingWong Posted September 2, 2005 Posted September 2, 2005 (edited) does anyone know of a good *FREE* C/C++ compiler?please don't flame me about things like "not knowing what google is" or something like that, i have tried google, and whatever results come up dont work! or maybe im just stupid or something that i cant figure out how to use them thanks!<{POST_SNAPBACK}>Googled "free c++ compilers"top linkVarious people here have mentioned:Bloodshed Dev-C++ C++ CompilerMingw32 C & C++ CompilersPelles C Compiler Edited September 2, 2005 by SumTingWong
AznSai Posted September 2, 2005 Posted September 2, 2005 The Borland free command line tools are pretty good. Doesn't come with a IDE but this can be download off the net.
Holger Posted September 2, 2005 Posted September 2, 2005 (edited) The new Dev-C++ IDE looks very good and you can have different languages. And the compiling is also very good. Edited September 2, 2005 by Holger Old project:GUI/Tray menu with icons and colors Other old stuff:IconFileScanner, TriState/ThreeState GUI TreeView, GUI ContextMenu created out of a TreeView
theguy0000 Posted September 2, 2005 Author Posted September 2, 2005 (edited) i got Pelles, put this in: main() { puts("hello world guess who is writing a c program"); return(0); }and this error came up when i compiled and tried to run the exe: Edited September 2, 2005 by theguy0000 The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN
theguy0000 Posted September 2, 2005 Author Posted September 2, 2005 help please The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN
jftuga Posted September 2, 2005 Posted September 2, 2005 You might want to see this post and the response it got. It looks like one of the choices to compile AutoIt itself is Dev C++, which I believe is free.-John Admin_Popup, show computer info or launch shellRemote Manager, facilitates connecting to RDP / VNCProc_Watch, reprioritize cpu intensive processesUDF: _ini_to_dict, transforms ini file entries into variablesUDF: monitor_resolutions, returns resolutions of multiple monitorsReport Computer Problem, for your IT help deskProfile Fixer, fixes a 'missing' AD user profile
MSLx Fanboy Posted September 2, 2005 Posted September 2, 2005 did you #include <stdio.h>? Writing AutoIt scripts since _DateAdd("d", -2, _NowCalcDate())
Nutster Posted September 2, 2005 Posted September 2, 2005 (edited) main() { puts("hello world guess who is writing a c program"); return(0); }<{POST_SNAPBACK}>main() should contain a full prototype. The puts() function is declared in <stdio.h>. Try the following instead.#include <stdio.h> int main(int argc, char **argv) { puts("hello world."); return 0; } Edited September 2, 2005 by Nutster David NuttallNuttall Computer Consulting An Aquarius born during the Age of Aquarius AutoIt allows me to re-invent the wheel so much faster. I'm off to write a wizard, a wonderful wizard of odd...
JSThePatriot Posted September 5, 2005 Posted September 5, 2005 For free and to use with AutoIt I would definitely recommend Bloodshed's Dev C++. It is free, and it allows compilation of AutoIt. Now if you want to pay then get Visual C++ as that is the other compiler that is used with AutoIt. JS AutoIt Links File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out. ComputerGetInfo UDF's Updated! 11-23-2006 External Links Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)
Darth_Sulfur Posted September 14, 2005 Posted September 14, 2005 (edited) Just get the GNU GCC compiler! It's cross-platform, and therefore better than Borland's... I haven't tried DevC++, but don't download the Visual Studio 2005 Express Beta because it's .NET-only! BTW: Does DevC++ have a GUI designer? EDIT: DevC++ uses GNU GCC Edited September 14, 2005 by Darth_Sulfur
MSLx Fanboy Posted September 14, 2005 Posted September 14, 2005 Visual Studio is for VB programs. Look at Visual C++ instead. EE2005Beta isn't that bad actually, I was first introduced to it at one of the MSDN conferences, pretty neat actually Writing AutoIt scripts since _DateAdd("d", -2, _NowCalcDate())
MHz Posted September 15, 2005 Posted September 15, 2005 Visual Studio is for VB programs. Look at Visual C++ instead.<{POST_SNAPBACK}>Visual Studio has Visual Basic and Visual C...also can be .Net depending on the version. Different editions can have included Visual J# and Visio etc.Visual Studio is a packaged suite of Microsoft languages.
MSLx Fanboy Posted September 15, 2005 Posted September 15, 2005 ...Oh...I never saw that the beta allows for me to write C programs...time to dig out that dvd again Writing AutoIt scripts since _DateAdd("d", -2, _NowCalcDate())
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now