前端之家收集整理的这篇文章主要介绍了
在VS2010上的Visual C中编写C代码,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我欣赏这些差异可以忽略不计,但我正在做一些数字运算,所以我想使用C.我刚刚在VS2010中创建了一个项目,选择了一个C项目并编写了一些C.所有执行都很好,但是
这是在快速(呃)C编译器或C中创建和执行的,因为它是一个C项目?
我如何指定我想写的代码实际上是C并编译并以C运行?
Visual Stu
dio C编译器将所有.c
文件视为C语言
文件并将其编译为此类
文件.
附加参考:
By default,the Visual C++ compiler
treats all files that end in .c as C
source code,and all files that end in
.cpp as C++ source code. To force the
compiler to treat all files as C
regardless of file name extension,use
the /Tc compiler option.
http://msdn.microsoft.com/en-us/library/bb384838.aspx
原文链接:https://www.f2er.com/c/110298.html