Jump to content

C/C++ compiler


theguy0000
 Share

Recommended Posts

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 :whistle:

thanks!

The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN

Link to comment
Share on other sites

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 :whistle:

thanks!

<{POST_SNAPBACK}>

Googled "free c++ compilers"

top link

Various people here have mentioned:

Bloodshed Dev-C++ C++ Compiler

Mingw32 C & C++ Compilers

Pelles C Compiler

Edited by SumTingWong
Link to comment
Share on other sites

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:

Posted Image

Edited by theguy0000

The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN

Link to comment
Share on other sites

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 by Nutster

David Nuttall
Nuttall 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...

Link to comment
Share on other sites

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)

Link to comment
Share on other sites

  • 2 weeks later...

Just get the GNU GCC compiler! :oops:

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! :mad2:

BTW: Does DevC++ have a GUI designer? :P

EDIT: DevC++ uses GNU GCC ;)

Edited by Darth_Sulfur
Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...