摘要:
关键字 sizeof 在C 语言中 sizeof( ) 不是一个函数,只是一个单目运算符 类似于 ++ -- 使用sizeof 不需要包含其他头文件 其返回值得类型是 size_t typedef unsigned int size_t 用来计算某数据类型所占的字节数 阅读全文
摘要:
memset Declaration: Copies the character c (an unsigned char) to the first n characters of the string pointed to by the argument str. The argument str 阅读全文
摘要:
头文件 stdio.h stdlib.h sting.h 先学习上面三个头文件: 1: stdio.h 这个头文件包含了 程序与外界数据交互的各种函数 说白了就是 用来处理 输入/输出 2:stdlib.h 即standard library标准库头文件 包含一些与系统打交道的函数 3:string 阅读全文
摘要:
因经常使用C++以及从未系统的学习C,导致最近写C的时候有种混沌感; 首先:对于哪些是C 的标准头文件尚不能很清晰的认知 其次:C 的某些函数属于哪个头文件,这个函数背后的原理实现较多不能理清 因此觉得有必要重新系统的学习C 阅读全文