使用当前浏览器访问考试宝,无法享受最佳体验,推荐使用 Chrome 浏览器进行访问。
更新时间: 试题数量: 购买人数: 提供作者:
有效期: 个月
章节介绍: 共有个章节
我的错题 (0道)
我的收藏 (0道)
我的斩题 (0道)
我的笔记 (0道)
顺序练习 0 / 0
随机练习 自定义设置练习量
题型乱序 按导入顺序练习
模拟考试 仿真模拟
题型练习 按题型分类练习
易错题 精选高频易错题
学习资料 考试学习相关信息
long a=0xffffff;
int b; char c;
int a,b;
a=1+'a';
b=2+7%-4-'A';
for( i=0; i<4; i++,i++ )
for( k=1; k<3; k++ ); printf("*" );
程序段的输出结果是().
exce((v1,v2),(v3,v4,v5),v6);
#include<stdio.h>
#define S(x) 4*(x)*x+1
main(){ int k=5,j=2;
printf("%d\n",S(k+j));
}
程序运行后的输出结果是().
#include <stdio.h>
#include <string.h>
main()
{char str[][20]={"One*World","One*Dream!"},*p=str[1];
printf("%d,",strlen(p)); printf("%s\n",p);
{int a1,a2; char c1,c2;
scanf("%d%c%d%c",&a1,&c1,&a2,&c2);
printf("%d,%c,%d,%c",a1,c1,a2,c2);
若想通过键盘输入,使得a1的值为12,a2的值为34,c1的值为字符a,c2的值为字符b,
程序输出结果是:12,a,34,b 则正确的输入格式是(以下如"图片1.jpg"
代表空格,<CR>代表回车)().
# include <stdio.h>
{ unsigned char a=2, b=4, c=5, d;
d = a | b; d &= c; printf("%d\n", d); }
struct st
{ int x;int *y;} *pt;
int a[]={1,2},b[]={3,4};
struct st c[2]={10,a,20,b};
pt=c;
以下选项中表达式的值为11的是().
struct s
{ int i;
struct s *p;};
static struct s a[3]={1,&a[2],3,&a[0]};
static struct s *ptr;
ptr =&a[1];