单项选择题

表达式3.6-5/2+1.2+5%2的值是______。

A.4.3
B.4.8
C.3.3
D.3.8
<上一题 目录 下一题>
热门 试题

单项选择题
有以下程序: #define P 3 void F(int x)return(P*x*x); main() printf( %d n ,F(3+5)); 程序运行后的输出结果是______。
A.192
B.29
C.25
D.编译出错
单项选择题
有以下程序: #include<string.h> main() char p[20]='a','b','c','d',q[]= abc ,r[]= abcde ; strcpy(p+strlen(q),r);strcat(p,q); printf( %d%d n ,sizeof(p),strlen(p)); 程序运行后的输出结果是______。
有以下程序:
#include<string.h>
main()
char p[20]='a','b','c','d',q[]="abc",r[]="abcde";
strcpy(p+strlen(q),r);strcat(p,q);
printf("%d%d\n",sizeof(p),strlen(p));
程序运行后的输出结果是______。
相关试题
  • 以下程序运行后的输出结果是______。...
  • 当运行以下程序时,输入abcd,程序的输出结...
  • 以下程序的运行结果是______。 int...
  • 以下程序运行后的输出结果是______。...
  • 以下程序中函数huiwen的功能是检查一个字符...