
C语言
drzdryse
这个作者很懒,什么都没留下…
展开
-
EasyX的封装,供GCC(G++)使用,支持纯C和C++两种兼容 -- EasyXWarpper(分享)
github地址:https://github.com/ScSofts/EasyXWarpper快速下载地址:https://download.youkuaiyun.com/download/m0_37711659/11710588原创 2019-09-10 15:11:18 · 2075 阅读 · 0 评论 -
C语言 单链表的基本运用
#include <stdio.h>#include <stdlib.h>#include <windows.h>// 单链表的基本运用typedef struct Struct6_student{ int score; struct Struct6_student *next;} Struct6List;// 打印单链表v...原创 2019-10-01 23:18:11 · 215 阅读 · 0 评论 -
C语言 双向链表的基本运用
#include <stdio.h>#include <stdlib.h>#include <windows.h>// 双向链表的基本运用typedef struct Struct7Tag{ int num; // 数据 struct Struct7Tag *last; // 前驱地址 struct Struct7Tag *...原创 2019-10-04 00:59:27 · 393 阅读 · 0 评论 -
C语言 函数传值及返回值的理解
C语言函数理解返回值:void返回空int返回数字intaint*返回数字数组int*aorinta[2]char返回字符charachar*返回字符串char*aorchara[2]char**返回字符串数组char**aor...原创 2019-10-04 13:24:47 · 732 阅读 · 0 评论