单项选择题

在E-R图中,用( )来表示实体之间联系。

A.矩形
B.菱形
C.椭圆形
D.正方形
<上一题 目录 下一题>
热门 试题

单项选择题
下面结构体的定义语句中,错误的是( )。
A.struct ordint x;int y;int z;;struct ord a;
B.struct ordint x;int y;int z;;ord a;
C.struct ordint x;int y;int z;a;
D.structint x;int y;int z;a;
单项选择题
下述程序的输出结果是( )。 #include<stdio.h> void main() int a[5]=1,2,3,4,5; int *p=a,**q=&p; printf( %d, ,*(p++)); printf( %d ,**q);
A.2,2
B.1,1
C.3,4
D.1,2
相关试题
  • 下面程序把从终端读入的文本(用@作为文本...
  • 下面程序的功能是:对字符串从小到大进行排...
  • 以下程序用以删除字符串中所有的空格,请填...
  • 若x和n均是int型变量,且x=12,n=5,...
  • 下列程序的输出结果是______。 int...