摘要:
转载自:http://blog.csdn.net/lihaoweiv/article/details/7027521使用未初始化的指针是非常危险的。通过一个未初始化的指针会很容易覆盖随机的内存区域。造成的损害取决于如何倒霉,所以初始化指针不仅仅是一个好主意。通过指向一个已经被定义变量的地址 很容易初... 阅读全文
摘要:
#include "stdio.h"#include "stdlib.h"#include "string.h"static char daytab[2][13] ={ {0,31,28,31,30,31,30,31,31,30,31,30,31}, {0,31,29,31,30,31,... 阅读全文
摘要:
#include #include #include #include #include #include int getline_(char *s,int n){ char c; char *sta = s; while(--n > 0 && (c = getchar()) !=... 阅读全文