c
文章平均质量分 75
X-giraffe
人不是产生灵感才去学习的,而在学习中才产生灵感。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
GCC——C compiler
持续更新中,最近更新:2021/2/20 文章目录1 C compilers1.1 挑几个常用的1.2 全量的2 what is GNU Project2.1 from wikipedia:2.2 project overview 1 C compilers 出处:C compilers 1.1 挑几个常用的 1.2 全量的 2 what is GNU Project 2.1 from wikipedia: GNU Project The GNU Project is a free software原创 2021-02-20 11:04:07 · 1308 阅读 · 0 评论 -
The C Programming Language 用例与练习——1.9 字符数组
1.9 字符数组 用例 #include <stdio.h> #define MAXLINE 1000 int getmyline(char line[], int maxline); void copy(char to[], char from[]); //打印最长的输入行 main() { int len; int max; char line[MAXLINE]; char longest[MAXLINE]; max = 0; //目前发现原创 2021-01-23 19:17:23 · 171 阅读 · 0 评论 -
在Windows下配置Code::Blocks,并打印出 hello, C
介绍Code::Blocks的下载,安装,配置编译器,及验证运行c程序原创 2021-01-19 22:41:47 · 1602 阅读 · 0 评论
分享