Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

64 Bit C compiler for Windows 7 [closed]

I am having 64 bit Windows 7 as my operating system and want to run some c programs. Is there a compiler for the same? I mean a 64 bit c compiler.

like image 546
Logan Avatar asked Jul 22 '10 01:07

Logan


People also ask

Can GCC be used for C?

GCC, formerly for "GNU C Compiler", has grown over times to support many languages such as C ( gcc ), C++ ( g++ ), Objective-C, Objective-C++, Java ( gcj ), Fortran ( gfortran ), Ada ( gnat ), Go ( gccgo ), OpenMP, Cilk Plus, and OpenAcc. It is now referred to as "GNU Compiler Collection".


1 Answers

Yes, you can try MinGW-w64. It's a 64-bit distribution of GCC for Windows. I think you want mingw-w64-1.0-bin_i686-mingw_20100702.zip. This distribution is actively maintained, and GCC has quite good support for modern C.

like image 191
Matthew Flaschen Avatar answered Oct 01 '22 14:10

Matthew Flaschen