单项选择题
设有如下关系表
则下列操作中,正确的是______。
A.T=R∩S
B.T=R∪S
C.T=RхS
D.T=R/S
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
以下选项中不能正确把c1定义成结构体变量的是( )。
A.typedef struct { int red; int green; int blue; } COLOR; COLOR cl;
B.struct color cl { int red; int green; int blue; }
C.struct color { int red; int green; int blue; } cl;
D.struct { int red; int green; int blue; } cl;
点击查看答案
单项选择题
以下叙述中正确的是( )。
A.局部变量说明为static存储数,其生存期将得到延长
B.全局变量说明为static存储类,其作用域将被扩大
C.任何存储类的变量在未赋初值时,其值都是不确定的
D.形参可以使用的存储类说明符与局部变量完全相同
点击查看答案
相关试题
有以下程序:void swap1(int c[ ])...
下面程序的功能是输出以下形式的金字塔图案...
有以下程序:void swap1(int c0[],...
有以下程序:int f(int b[ ][4])...
以下程序中函数scmp的功能是返回形参指针s...