使用 stdlib.h 或 stdio.h 中的某些函数会导致语法错误

发布于 2024-09-12 12:17:10 字数 492 浏览 4 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

刘备忘录 2024-09-19 12:17:10

在 Visual Studio 中使用 C 会将编译器置于严格(老式 C)模式。所有声明都必须位于块的开头:

#include<time.h>
#include<stdlib.h>
#include<stdio.h>
#include"someOtherHeader.h"

int main(void){
    double start;
    srand((unsigned int) time(NULL));
    .
    .
}

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:

#include<time.h>
#include<stdlib.h>
#include<stdio.h>
#include"someOtherHeader.h"

int main(void){
    double start;
    srand((unsigned int) time(NULL));
    .
    .
}
忆悲凉 2024-09-19 12:17:10

Visual Studio不支持C99(只是一点点)

Visual Studio supports NOT C99 (just a little bit)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文