C语言最重要的知识点(another)

其她考试重点

文件的复习方法:把每章题目做一遍,基本上考试的都会在练习当中。

1)字符串的strlen()和strcat()和strcmp()和strcpy()的使用方法一定要记住。她们的参数都是地址。其中strcat()和strcmp()有两个参数。

2)strlen和sizeof的区别也是考试的重点。

3)define f(x)(x * x)和 define f(x)x * x 之间的差别。替换的时候有括号和没有括号是很大的区别。

4)

int *p;
p = (int *) malloc(4);
p = (int *

猜你喜欢

转载自blog.csdn.net/weixin_45418327/article/details/106341719