c语言基础试题含解析,C语言基础测试题解析

#define exp 0.000001

if((x>-exp) && (x

(3)请写出char *p与“零值”比较的if语句:答:if(p == null) 或 if(p != null)

2、头文件中的ifndef/define/endif的作用是什么?

答:避免头文件被重复引用。

3、#include

//第一个

for (i = 0; i < n; i++)

{

if (condition)

{

dosomething;

}

else

{

dosomething;

}

}

//第二个

if (condition)

{

for (i = 0; i < n; i++)

dosomething;

}

else

{

for (i = 0; i < n; i++)

dosomething;

}

答:第一个for代码的程序简洁,但是多执行了n-1次逻辑判断。第二个for代码程序不够简洁,但是效率高。

7、下面的代码的输出结果是多少?

#include

#include

void fun(int i)

{

if (i > 0)

{

fun(i / 2);

}

printf("%d\n", i);

}

int main()

{

fun(10);

system("pause");

return 0;

}

运行结果:

3ff4c9bc23f946c539f39d58b1b38261.png

注意:递归的展开过程和递归的条件(递归的停止条件)。

8、编写strcpy函数

一直strcpy的原型是:char* strcpy(char *strdest, char *strssrc);其中,strdest是目的字符串,strsrc是源字符串。

(1)不调用c/c++字符串库函数,自己编写函数strcpy;

(2)strcpy能把strsrc的内容复制到strdest,为什么还要char*类型的返回值?

(1)

答:

char *my_strcpy(char *strdest, const char* strsrc)

{

assert((strdest != null) && (strdest != null));

char *ret = strdest;

while ((*strdest++ = *strsrc++) != '\0')

{

;

}

return ret;

}

(3)便于链式访问。如:int d = strlen(strcpy(p, “hello”))。

9、下面的代码有什么问题?为什么?

char c;

c = getchar();

if (eof == c)

{

...

}

答:会出错。因为getchar()返回的是int类型,其原型是:int getchar(),出错返回-1,成功返回其值的ascii码。因为char的取值范围为[-2^7, 2^7-1],当返回的ascii码不在char的取值范围,则会出错。

10、请写一个c函数,若当前是big_endian的,则返回0;若是little_endian的,则返回1。

//方式一:指针

int check_syc(void)

{

int i = 1;

char *j = (char*)&i;

if (*j == 1)

{

return 1;

}

else

return 0;

}

//方式二:联合体

int check_syc(void)

{

union node

{

char i;

int j;

}c;

c.j = 1;

if (c.j == 1)

{

return 1;

}

else

return 0;

}

11、类型转换。

double d = 100.25;

int x = d;

int *pint = (int*)&d;

输出x和*pint的值,结果是否相同?为什么?

答:不相同。因为x输出为100,但是*pint输出的是double d的前四个字节表示的值。

12、下面的代码有什么问题?为什么?

void fun(char arr[10])

{

char c = arr[2];

}

int main()

{

char b[10] = "abcdefg";

fun(b[10]);

return 0;

}

答:

(1)调用fun(b[10])会出现越界访问,因为数组b只有10个元素,但是却访问第11个元素。

(2)编译器会发出警告,提示fun函数需要char*类型数据,而不是char类型数据。

13、下面的代码有什么问题?为什么?

#include

#include

struct student

{

char *name;

int score;

}stu,*pstu;

int main()

{

pstu = (struct student*)malloc(sizeof(struct student));

strcpy(pstu->name, "tom");

pstu->score = 99;

free(pstu);

system("pause");

return 0;

}

答:程序会出现异常,因为程序只给指针pstu开辟了空间。

应加上:pstu->name = (char*)malloc(sizeof(10));

14、请问运行test函数会出现什么样的后果?为什么?

void getmemory(char* p)

{

p = (char*)malloc(100);

}

void test()

{

char *str = null;

getmemory(str);

strcpy(str, "hello world!");

printf(str);

}

答:程序会出现异常。因为getmemory不能传递动态内存,str的空间仍然为null,当程序运行到strcpy处时,程序就会崩溃。

15、请问运行下面代码会出现什么样的后果?为什么?

#include

#include

char *getmemory(void)

{

char arr[] = "hello world!";

return arr;

}

int main()

{

char *str = null;

str = getmemory();

printf(str);

printf("\n");

system("pause");

return 0;

}

运行结果为:

c97f0dc2a513944fca988a24ba6e15f5.png

答:会出现乱码,因为函数返回的是指向“栈内存的指针”,它随着函数的结束而被清除,新内容不可知。

16、请问运行下面代码会出现什么样的后果?为什么?

#include

#include

void getmemory(char **p, int num)

{

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

}

int main()

{

char *str = null;

getmemory(&str, 100);

strcpy(str, "hello");

printf(str);

printf("\n");

system("pause");

return 0;

}

运行结果:

e272cee029fa3377337561947a1b0aee.png

答:能输出结果,但是会出现内存泄露。

17、请问运行下面代码会出现什么样的后果?为什么?

#include

#include

int main()

{

char *str = (char*)malloc(100);

strcpy(str, "hello");

free(str);

if (str != null)

{

strcpy(str, "world");

printf(str);

}

printf("\n");

system("pause");

return 0;

}

运行结果:

968f44aa436e9e770f0baf49df6377db.png

答:程序会出现异常,存在野指针,因为释放动态内存后没有置空,if语句不起作用。

注意:malloc要和free同用。

<>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值