使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
struct st
{
int n;
st *next;
};
st a[3]={5,&a[1],7,&a[2],9,'\0'},*p;
p=&a[0];则以下表达式的值为6的是
____。
struct student
int no;
char name[20];
char sex;
struct
int year;
int month;
int day;
}birth;
struct student s;
设变量s中的“生日”应该是“1984年11月11日”,下列对“生日”的正确赋值方式是
struct s{ int i1;struct s *i2, *i0;};static struct s a[3] = { 2, &a[1], 4, 4, &a[2], &a[0], 6, NULL, &a[1]};static struct s *ptr;ptr = a;