摘要:
C 库函数 - atol() C 标准库 - <stdlib.h> 描述 C 库函数 long int atol(const char *str) 把参数 str 所指向的字符串转换为一个长整数(类型为 long int 型)。 声明 下面是 atol() 函数的声明。 long int atol( 阅读全文
摘要:
C 库函数 - snprintf() C 标准库 - <stdio.h> 描述 C 库函数 int snprintf(char *str, size_t size, const char *format, ...) 设将可变参数(...)按照 format 格式化成字符串,并将字符串复制到 str 阅读全文
摘要:
C 库函数 - memset() C 标准库 - <string.h> 描述 C 库函数 void *memset(void *str, int c, size_t n) 复制字符 c(一个无符号字符)到参数 str 所指向的字符串的前 n 个字符。 声明 下面是 memset() 函数的声明。 v 阅读全文
摘要:
git配置SSH Key,上传本地代码至github git配置全局的name和email git config --global user.name "name" git config --global user.email "email" name和email是注册github的昵称和邮箱。 g 阅读全文
摘要:
ofstream是从内存到硬盘, ifstream是从硬盘到内存,其实所谓的流缓冲就是内存空间 阅读全文
摘要:
git 如何解决The authenticity of host 'github.com (192.30.255.112)' can't be established. 新生成密钥的时候,git clone或者push的时候,经常会报这样的错误: The authenticity of host ' 阅读全文
摘要:
利用Git生成本机SSH Key并添加到GitHub中 本地仓库和github之间是通过SSH加密传输的,所以需要先到github中添加你本机的SSH Key 进行认证。 1、在桌面打开git命令窗口 2、输入“ssh-keygen -t rsa -C youremail@example.com” 阅读全文