发布时间:2015-11-29 18:54:53
首先明确:函数的函数名实际上就是一个指针,其指向该函数的代码在内存中的首地址typedef int Myfunc (const char *,const struct stat,int)函数的类型定义:表明Myfunc是一个函数类型,那请问什么样的函数类型呢?-------这种函数类型为:它的参数为3个,返回值为int (类比 typedef i.........【阅读全文】
发布时间:2015-10-07 10:09:30
<p style="margin:10px auto;font-family:verdana;font-size:14px;line-height:22.4px;white-space:normal;"> 静态变量作用范围在一个文件内,程序开始时分配空间,结束时释放空间,默认初始化为0,使用时可以改变其值。</p><p style="margin:10px auto;font-family:verdana;font-size:14px;line-height:22.4px;wh.........【阅读全文】