Code Bye

c89是不是强制变量必须放在可以执行语句之前?

 

问题1:

#include<stdio.h>

#include<stdbool.h>

int main()

{

    fun();

    printf(“\a”);

    printf(“%d”,sizeof(long int));

    bool bRet = false;

    _Bool bRet2 = false;

    return 0;

}

void fun()

{

}

gcc -o hello -Wall -g -pedantic -std=c89  -ansi hello.c

并没有出现必须放在函数开头的警告信息?

是gcc不支持,还是?

问题2:

依然是c89和c99对函数的使用问题

看图:

依然用gcc测试,

gcc -o hello -Wall -g -pedantic -std=c89  -ansi hello.c

无论是c89还是c99,提示如下:

[root@localhost workspace]# gcc -o hello -Wall -g -pedantic -std=c99  -ansi hello.c

hello.c: In function ‘main’:

hello.c:6:2: warning: implicit declaration of function ‘fun’ [-Wimplicit-function-declaration]

  fun();

  ^

hello.c:8:2: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long unsigned int’ [-Wformat=]

  printf(“%d”,sizeof(long int));

  ^

hello.c: At top level:

hello.c:23:6: warning: conflicting types for ‘fun’ [enabled by default]

 void fun()

      ^

hello.c:6:2: note: previous implicit declaration of ‘fun’ was here

  fun();

  ^

两个问题。

#1
请参考gcc源代码相关片断。
#3
是C89标准问题,必须放在执行语句前。
#4
报的都是warning,应该没问题吧。
#5

29分

变量必须放在可以执行语句之前?这个得看标准了,不过,推荐你还是放在之前吧。

因为有些网上做题目的题库(比如,华为的上机系统,我就遇到过这个坑,程序明明要本地能跑,但是上传到华为上机系统就是报错),它就有可能会报错。


CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明c89是不是强制变量必须放在可以执行语句之前?