单项选择题
设有以下语句
typedef struct s
int g;char h;T
则下面叙述中正确的是
A.可用S定义结构体变量
B.可以用T定义结构体变量
C.S是struct类型的变量
D.T是structS类型的变量
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有以下程序 void swapl(int c[]) int t; t=c[0];c[0]=c[1];c[1]=t; void swap2(int c0,int c1) int t; t=c0;c0=c1;c1=t; main() int a[2]=3,5,b[2]=3,5; swapl(
A.;swap2(b[0],b[1]);
点击查看答案&解析
单项选择题
有以下定义 #include <stdio.h> char a[10],*b=a; 不能给a数组输入字符串的语句是
A.
B.gets(a[0]);
C.gets(&a[0]);
D.ge
点击查看答案&解析
相关试题
有以下程序 #include <stringh> main...
有以下程序 #include <stdio.h> mai...
有以下程序 int f(int b[][4]) ...
下面程序的功能是输出以下形式的金字塔图案...
有以下程序 struct STU char name[1...