A.011 B.1e1 C.OxabCd D.8.OE0.5
单项选择题以下不合法的用户标识符是()
A.j2_KEY B.Double C.4d D._8_
填空题以下程序段的输出结果是()。 union node {int a; float b; Char C[10];}; printf(”%d”,sizeof(union node));
填空题以下程序段的输出结果是()。 Char s[]I=” 1238 080abc”; printf(”%d n”,strlen(s));
填空题设intx=l,y=l;表达式(!x||y--)的值是()
填空题以下程序运行后的输出结果是()。 main() {double d=3.2;int x,y; x=1.2;y=(x+3.8)/5.0; printf(”%d n”,d*y); }