C语言测试题

一、判断题(对的写T,错的写F并说明原因)

1. 有数组定义int a[2][2]={{1},{2,3}}; 则a[0][1]的值为0。( )

2. int(*ptr)(),则ptr是一维数组的名字。( )

3. 指针在任何情况下都可以进行>,<.>=,<=,==运算。( )

4. switch(c)语句中c可以是int,long,char,float,unsigned int类型。( )

5. #define print(x) printf(“the no,” #x”,is”) ( )

二、填空题

1. 在Windows下,写出运行结果

char str[] = “Hello”;

char *p=str;

int n = 0;

sizeof(str)=( )

sizeof(p)=( )

sizeof(n)=( )

void func(char str[100]){ }

sizeof(str)=( )

2. void setmemory(char **p, int num)

{

*p = (char*)malloc(num);

}

void test(void)

{

char *str = NULL;

setmemeory(&str, 100);

strcpy(str, "hello");

printf(str);

}

运行test函数有什么结果?

3. 设 int arr[] = {6, 7, 8, 9, 10};

int *ptr = arr;

*(ptr++) += 123;

printf("%d,%d", *ptr,*(++ptr));

输出结果?

三、编程题

转自:http://www.ewdoc.com/article/2917.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值