C语言 适用于 Windows 7 的 64 位 C 编译器
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/3305228/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
64 Bit C compiler for Windows 7
提问by Logan
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.
我的操作系统是 64 位 Windows 7,并且想要运行一些 c 程序。是否有相同的编译器?我的意思是 64 位 c 编译器。
回答by Matthew Flaschen
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.
是的,您可以尝试MinGW-w64。它是适用于 Windows 的 GCC 的 64 位发行版。我想你想要mingw-w64-1.0-bin_i686-mingw_20100702.zip。这个发行版得到了积极维护,GCC 对现代 C 有很好的支持。
回答by DevinEllingson
You could use the C compiler provided with Visual Studio 2010 (or probably 2008), just set your target type to x64 and compile .c files, you will get a 64-bit EXE.
您可以使用 Visual Studio 2010(或可能是 2008)提供的 C 编译器,只需将目标类型设置为 x64 并编译 .c 文件,您将获得 64 位 EXE。
回答by lzcd
If you're looking for a development environment as well, Visual C++ (Express) might be worth a peek: http://www.microsoft.com/express/Windows/
如果您也在寻找开发环境,Visual C++ (Express) 可能值得一看:http: //www.microsoft.com/express/Windows/

