摘要:
这个基础函数,主要见过两种用法: 1.内存初始化 2.考试!!!(鉴于经常考试翻车,立个flag,逢考必对~) memset声明: void * memset ( void * ptr, int value, size_t num ); memset入参: ptr: Pointer to the b 阅读全文
摘要:
<regex.h>不是标准的C语言库函数,目前只能在linux中使用。 相关结构体: /* Type for byte offsets within the string. POSIX mandates this. */ typedef int regoff_t; typedef struct { 阅读全文
摘要:
整型提升是C语言的一种规则,由C语言的发明人丹尼斯·里奇与肯·汤普逊创设: "A character, a short integer, or an integer bit-field, all either signed or not, or an object of enumeration ty 阅读全文
摘要:
一.脚本下载 init.sh #!/bin/bash cd code for dir in $(ls) do cd $dir git config --local receive.denycurrentbranch ignore echo $dir cd .. done gitShare.sh #! 阅读全文