使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 练习进度 0 / 0
随机练习 自定义设置练习量
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
struct st { char name[15];
int age; }
a[10]={"ZHAO",14, "WANG",15, "LIU",16, "ZHANG",17 };
执行语句printf["%d,%c",a[2].age, *(a[3].name+2))的输出结果为 。
#include<stdio.h>
struct s
{
int x;
int y;
} data[2] = {10, 100, 20, 200};
int main()
struct s *p = data + 1;
printf("%d\n", p->x);
return 0;
}
struct tree
char *s;
}t;
func(struct tree t)
{ t.x=10; t.s="computer"; return 0; }
void main()
t.x=1;
t.s="minicomputer";
func(t);
printf("%d,%s\n",t.x,t.s);
6.如下说明语句: enum A {A0=1,A1=3,A2,A3,A4,A5}; enum A B; 执行 B=A3; printf("%d\n",B); 输出是___。