- 相关推荐
C语言笔试题
1. typedef int (*func_p)(int)

func_p p
p代表什么意思?
2.int(*a[10])(int) a代表什么意思??
3.char str[]="GE";
char *str2 = str;
sizeof(str)=? sizeof(str2)=?
4.有关malloc的程序判断,具体的给忘了,就是看一下字符串空间的分配,
C语言笔试题
,资料共享平台
《C语言笔试题》(https://www.unjs.com)。5.关键字volatile的含义,在程序设计过程中的应用?
6.const int *p1;
int const *p2;
int *const p3;
7.int a = -1;
unsigned int b = 2;
那么a+b>a?为什么?a+b>b?为什么?
【C语言笔试题】相关文章:
GE:C语言笔试题09-19
C语言笔试题集锦10-04
C语言基础笔试题07-02
c语言基础面试题07-11
C语言常用笔试题10-29
C/C++笔试题05-24
C笔试题10-12
C语言软件开发笔试题目08-29
精心整理的关于c语言常考的笔试题10-04
C/C++笔试题目大全08-22