有以下程序:  #include<stdio.h>  #define PT 3.5;  #define S(x) PT *x*x;  main()  { int a=1,b=2;   printf("%4.1f\n",S(a+b));  }  程序的

admin2022-10-24  26

问题 有以下程序:
 #include<stdio.h>
 #define PT 3.5;
 #define S(x) PT *x*x;
 main()
 {  int a=1,b=2;
    printf("%4.1f\n",S(a+b));
 }
 程序的运行结果是(          )。

选项 A、7.5
B、31.5
C、程序有错,无输出结果
D、14.0

答案C

解析 宏定义不是c语句,末尾不需要有分号,所以程序会出现语法错误。故本题答案为C选项。
转载请注明原文地址:https://kaotiyun.com/show/9Jkp777K
0

相关试题推荐
随机试题
最新回复(0)