使用 stdlib.h 或 stdio.h 中的某些函数会导致语法错误
我正在 Win7 Pro x64 上的 Visual Studio 2005 中编写一些 C 代码。代码正确;它在Eclipse下的MinGW上编译并运行。但是,在 VS2005 中构建代码时,使用标准 C 库(如 stdio 或 stdlib)中的某些函数会导致以下几行显示语法错误。举个例子:
#include<time.h>
#include<stdlib.h>
#include<stdio.h>
#include"someOtherHeader.h"
int main(void){
srand((unsigned int) time(NULL));
double start;
.
.
.
下面的代码并不重要。 VS2005 说缺少 ';'在“类型”之前。注释掉 srand() 可以解决该问题。奇怪的是,稍后调用rand()时,没有问题。我还注意到 exit() 和 fprint() 的行为。但对于 malloc() 则不然。想法?
I'm working on some C code in Visual Studio 2005 on Win7 Pro x64. The code is correct; it compiles and runs on MinGW under Eclipse. However, using certain functions from the standard C libraries like stdio or stdlib causes the following lines to exhibit syntax errors when the code is built in VS2005. As an example:
#include<time.h>
#include<stdlib.h>
#include<stdio.h>
#include"someOtherHeader.h"
int main(void){
srand((unsigned int) time(NULL));
double start;
.
.
.
The following code doesn't matter. VS2005 says that there is a missing ';' before 'type'. Commenting out srand() fixes the problem. Oddly, when rand() is called later, there is no problem. I also noticed the behavior with exit() and fprint(). But not with malloc(). Thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Visual Studio 中使用 C 会将编译器置于严格(老式 C)模式。所有声明都必须位于块的开头:
Using C in Visual Studio puts the compiler into strict (old school C) mode. All your declarations have to be at the beginning of your blocks:
Visual Studio不支持C99(只是一点点)
Visual Studio supports NOT C99 (just a little bit)