摘要: 无意中看到了关于面试题的博客 博客的出处为了防止博客的失效我将其代码引入: void strcpy( char *strDest, char *strSrc ){ while( (*strDest++ = * strSrc++) != '\0’ ); // .................. 阅读全文
posted @ 2015-08-17 13:37 吉吉熊 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 1.指针的变量声明中方式与易错点C语言允许形式的自由性。即以下两种声明方式效果相同。1 int main(void)2 {3 int* p;4 int *k;5 return 0;6 } 1 int main(void) //同时声明多个指针变量 2 { 3 // ... 阅读全文
posted @ 2015-08-17 10:32 吉吉熊 阅读(226) 评论(0) 推荐(0) 编辑
.catelog-title {margin-left:0}