随笔分类 -  c

摘要:WebBench的主要工作原理 下载地址: https://github.com/EZLippi/WebBench 安装: [root@xxx ~]# unzip master.zip creating: WebBench-master/ inflating: WebBench-master/LIC 阅读全文
posted @ 2020-10-29 13:12 anobscureretreat 阅读(231) 评论(0) 推荐(0) 编辑
摘要:下载链接: https://sourceforge.net/project/downloading.php?group_id=67586&filename=glew-1.5.1-win32.zip 点击上面的链接下载最新的GLEW(支持OpenGL 3.0),解压,将 /bin/glew32.dll 阅读全文
posted @ 2019-09-22 20:05 anobscureretreat 阅读(1916) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h> #include <string.h> int main () { const char str[] = "http://www.runoob.com"; const char ch = '.'; char *ret; ret = strchr(str, ch); printf("|%c| 之后的字符串是 - |%s|\n", ch, ret); return 阅读全文
posted @ 2019-09-06 23:44 anobscureretreat 阅读(210) 评论(0) 推荐(0) 编辑
摘要:python: 输出 c: 输出 参考: https://www.jianshu.com/p/b31f078994f0 https://blog.csdn.net/qq_16676375/article/details/82909145 https://jingyan.baidu.com/artic 阅读全文
posted @ 2019-08-08 20:51 anobscureretreat 阅读(820) 评论(0) 推荐(0) 编辑
摘要:指针和引用都是地址的概念,指针指向一块内存,它的内容是所指内存的地址;引用是某块内存的别名。程序为指针变量分配内存区域,而不为引用分配内存区域。 指针使用时要在前加 * ,引用可以直接使用。 引用在定义时就被初始化,之后无法改变;指针可以发生改变。 即引用的对象不能改变,指针的对象可以改变。 没有空 阅读全文
posted @ 2019-08-02 18:24 anobscureretreat 阅读(1397) 评论(0) 推荐(0) 编辑
摘要:结构体 内存排布图如下 参考: https://blog.csdn.net/zhengnianli/article/details/87390212 https://blog.csdn.net/Scl_Diligent/article/details/80295446 阅读全文
posted @ 2019-08-01 22:46 anobscureretreat 阅读(183) 评论(0) 推荐(0) 编辑
摘要:code 输出 根据输出结果,我们画出下面这个结构图 可以看到,由于我是使用Xcode运行的代码,Xcode的pid是88994 以上代码运行后的进程pid是88993 两次循环以后,88993 fork 出了88996,88997,88998三个子进程,算上自身,一共有四个进程。 i=0时,889 阅读全文
posted @ 2019-07-23 22:33 anobscureretreat 阅读(1805) 评论(0) 推荐(0) 编辑
摘要:这个属性告诉编译器函数不会返回,这可以用来抑制关于未达到代码路径的错误。 C库函数abort()和exit()都使用此属性声明: Once tagged this way, the compiler can keep track of paths through the code and suppr 阅读全文
posted @ 2019-07-23 18:30 anobscureretreat 阅读(970) 评论(0) 推荐(0) 编辑
摘要:新建 注意选择如下选项,c和c++ 都一样的 然后,编译运行 参考: https://blog.csdn.net/u013610133/article/details/72857870 https://www.runoob.com/cplusplus/cpp-tutorial.html 阅读全文
posted @ 2019-07-21 19:51 anobscureretreat 阅读(4389) 评论(0) 推荐(0) 编辑
摘要:下载: 链接:https://pan.baidu.com/s/1wbbqWZySG46euLri1_lfKQ 密码:xijw 阅读全文
posted @ 2019-07-21 19:22 anobscureretreat 阅读(160) 评论(0) 推荐(0) 编辑
摘要:下载安装:https://www.cnblogs.com/sea-stream/p/11220036.html 切换语言:https://www.cnblogs.com/sea-stream/p/11220515.html 安装完成后,新建一个工程 然后打开后,直接运行即可 编译链配置 参考: ht 阅读全文
posted @ 2019-07-21 11:31 anobscureretreat 阅读(7286) 评论(0) 推荐(0) 编辑
摘要:下载:https://cmake.org/download/ 下载完成后,双击安装 安装完成后,打开命令行,运行 查看版本 参考: https://blog.csdn.net/qq_21046135/article/details/78767134 https://cmake.org/downloa 阅读全文
posted @ 2019-07-21 11:20 anobscureretreat 阅读(1377) 评论(0) 推荐(0) 编辑
摘要:右键显示包内容,进入目录,contents/lib,删除resources_zh.jar,重启即可。 参考: https://blog.csdn.net/qq_45179462/article/details/91330065 阅读全文
posted @ 2019-07-21 11:01 anobscureretreat 阅读(1912) 评论(0) 推荐(0) 编辑
摘要:定义 参数 描述 该函数返回 str1 开头连续都不含字符串 str2 中字符的字符数。 例子 输出 参考: https://www.runoob.com/cprogramming/c-function-strcspn.html 阅读全文
posted @ 2019-07-20 23:24 anobscureretreat 阅读(248) 评论(0) 推荐(0) 编辑
摘要:定义 描述 将指针变量 s 所指向的前 n 字节的内存单元用一个“整数” c 替换,注意 c 是 int 型。s 是 void* 型的指针变量,所以它可以为任何类型的数据进行初始化。 例子 根据memset函数的不同,输出结果也不同,分为以下几种情况: 参考: http://c.biancheng. 阅读全文
posted @ 2019-07-20 23:14 anobscureretreat 阅读(2688) 评论(0) 推荐(1) 编辑
摘要:定义 参数 str -- 要被检索的 C 字符串。 c -- 在 str 中要搜索的字符 说明 该函数返回在字符串 str 中第一次出现字符 c 的位置,如果未找到该字符则返回 NULL。 例子 输出 参考: https://www.runoob.com/cprogramming/c-functio 阅读全文
posted @ 2019-07-20 22:22 anobscureretreat 阅读(326) 评论(0) 推荐(0) 编辑
摘要:定义 描述 strncasecmp()用来比较参数s1 和s2 字符串前n个字符,比较时会自动忽略大小写的差异。 若参数s1 和s2 字符串相同则返回0。s1 若大于s2 则返回大于0 的值,s1 若小于s2 则返回小于0 的值。 例子 输出 参考: http://c.biancheng.net/c 阅读全文
posted @ 2019-07-20 22:16 anobscureretreat 阅读(9514) 评论(0) 推荐(0) 编辑
摘要:定义 参数 描述 该函数返回在 haystack 中第一次出现 needle 字符串的位置,如果未找到,则返回 null。 例子 输出 参考: https://www.runoob.com/cprogramming/c-function-strstr.html 阅读全文
posted @ 2019-07-20 22:09 anobscureretreat 阅读(227) 评论(0) 推荐(0) 编辑
摘要:getopt函数 描述 定义 参数 函数调用后,会返回以下四个变量 例子 编译运行 输出 demo getopt_long函数 描述 定义 参数 返回 参数说明: 例子 demo getopt_long_only函数 getopt_long_only 函数与 getopt_long 函数使用相同的参 阅读全文
posted @ 2019-07-20 18:12 anobscureretreat 阅读(517) 评论(0) 推荐(0) 编辑
摘要:打开设置文件 输入 效果 参考: https://segmentfault.com/q/1010000009069958/ 阅读全文
posted @ 2019-07-20 09:30 anobscureretreat 阅读(3246) 评论(0) 推荐(0) 编辑