单项选择题
能正确表示逻辑关系:"a≥10或a≤0"的C语言表达式是
A.a>=10 or a<=0
B.a>=0|a<=10
C.a>=10&&a<=0
D.a>=10||a<=0
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
若有以下定义的语句: struct student int age; int num;; struct student stu[3]=1001,20,1002,19,1003,21; main() struct student *p; p=stu; … 则以下不正确的引用是( )。
A.(p++)->num
B.p++
C.(*p).num
D.P=&stu.age.
点击查看答案&解析
单项选择题
有以下程序: void fun(int a,int b,int c) a=456,b=567,c=678; main() int x=10,y=20,z=30; fun(x,y,z); printf( %d,%d,%d n ,x,y,z); 输出结果是
A.30,20,10
B.10,20,30
C.456,567,678
D.678,567,456
点击查看答案&解析
相关试题
请阅读以下程序: #include<stdio.h>...
下面程序的运行结果是( )。 #include...
主程序调用findmax函数求出数组中最大元素...
下面程序的运行结果是( )。 #include...
以下程序的输出结果是( )。 #include...