Files
C-CrashCourse/README.md
hairrrrr f6512c8ff4 1
2020-03-06 15:13:17 +08:00

144 lines
5.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## Introduce 介绍
C语言必知必会系列教程
C语言自学全网最全资料。
<br>
<div align="center">
<a href="#"> <img src="https://img.shields.io/badge/language-C-orange"></a>
<a href="#weixin"> <img src="https://img.shields.io/badge/QQ%E7%BE%A4%E5%8F%B7-1040522517-blue"></a>
<a href="#weixin"> <img src="https://img.shields.io/badge/%E5%BE%AE%E4%BF%A1%E5%85%AC%E4%BC%97%E5%8F%B7-%E4%B8%8D%E4%BC%9A%E7%BC%96%E7%A8%8B%E7%9A%84%E7%A8%8B%E5%BA%8F%E5%9C%86-blue"></a>
</div>
<br>
<div align="center">
<img src="https://github.com/hairrrrr/C-CrashCourse/blob/master/img/logo/logo.png" width="200px">
</div>
<br>
<div>
## 导航 Navigation
#### <a href="#cmooc">01 慕课篇</a>
#### <a href="#ccc">02 C语言入门到精通篇</a>
#### <a href="#ac">03 C语言进阶篇</a>
</div>
<div>
## 目录 Catalogue
<div id="cmooc">
### 慕课篇
***
#### 适合人群快速了解C语言并且掌握一定的深度的知识应付期末考试足够路线以翁恺老师的MOOC为主
<br>
#### 1. 变量
#### 2. 表达式
#### 3. 判断
#### 4. 循环
- while 与 do while
- for
#### 5. 数据类型
- 编程练习
- 数据类型
- 其他运算:逻辑, 条件, 逗号
#### 6. [函数](https://mp.weixin.qq.com/s/JEalmGOwNXp9IM0W7B7YJw)
#### 7. [数组](https://mp.weixin.qq.com/s/Pny_UjBD-4qBCnNAy13OFQ)
#### 8. 指针
- [基础](https://mp.weixin.qq.com/s/x3un4tnaHSISUfP8n3V_6g)
- [运算](https://mp.weixin.qq.com/s/q0b1ib15FXeEr8hjUhU9ew)
- [const](https://mp.weixin.qq.com/s/Fc-sAgpXmJ1eVKufZCvN8A)
#### 9. 字符串
- [基础](https://mp.weixin.qq.com/s/FSQm1GroRFfnQDSCiKf5dg)
- [常用字符串函数详解](https://github.com/hairrrrr/C-CrashCourse/blob/63f913871c6d2ca0daa1353dead08b75aa7f24a6/C%20Crash%20Course/13%20String/Prelesson/ten-common-used-string-func.md)
#### 10. ACLLib的基本图形函数
#### 11. 结构类型(联合&枚举&结构)
#### 12. [程序结构](https://github.com/hairrrrr/C-CrashCourse/tree/master/MOOC/detail)
#### 13. 文件
#### 14. 链表
</div>
<br>
<div id="ccc">
### C语言入门到精通篇
***
#### 适合人群零基础入门并且想精通C语言
<br>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/01%20C%20Language%20Overview">01 C Language Overview C语言概论</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/02%20Basic%20Conception">02 Basic Conception 基本概念</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/03%20Formatted%20Input%26Output">03 Formatted Input&Output 格式化的输入输出</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/04%20Expression">04 Expression 表达式</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/05%20Select%20Statement">05 Select Statement 选择语句</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/06%20Loop">06 Loop 循环</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/07%20Data%20Type">07 Data Type 数据类型</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/08%20Array">08 Array 数组</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/09%20Function">09 Function 函数</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/11%20Pointer">11 Pointer 指针</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/12%20Pointer%26Array">12 Pointer&Array 指针与数组</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/13%20String">13 String 字符串</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/16%20Sturcture%26Union%26Enum">16 Structure&Union&Enum 结构&联合&枚举</a>
#### <a href="https://github.com/hairrrrr/C-CrashCourse/tree/master/C%20Crash%20Course/17%20Advanced%20Pointer">17 Advanced Pointer 指针的高级应用</a>
</div>
<br>
<div id="ac">
### C语言进阶篇
***
#### 适合人群:想要深挖指针与内存
<br>
#### <a href="#">01 数据存储</a>
#### <a href="#">02 指针进阶 </a>
#### <a href="#"> </a>
#### <a href="#"> </a>
</div>
</div>
<br>
## 关于我 About Me
<div id = "weixin" align="center">
<p>我的社交平台</p>
<a href="https://www.zhihu.com/people/wang-ni-ma-46-25"> 知乎 </a> / <a href="https://blog.csdn.net/qq_44954010"> CSDN </a> / <a href="https://www.jianshu.com/u/30f0dcfc671c"> 简书 </a>
<br><br>
微信公众号:不会编程的程序圆
<p><img width="320px" src="https://github.com/hairrrrr/C-CrashCourse/blob/master/img/QR%20Code/1.png"></img></p>
学习英语关注她,一个四六级都过了的学姐:
<p><img width="320px" src="https://github.com/hairrrrr/C-CrashCourse/blob/master/img/QR%20Code/0.jpg"></img></p>
QQ群
<p><img width="320px" src="https://github.com/hairrrrr/C-CrashCourse/blob/master/img/QR%20Code/qq.png"></img></p>
</div>
## License 声明
本仓库内容除了少部分引用书籍和技术文档的部分内容(均在文中末尾指出),其余都是我的原创。在您引用本仓库内容或者对内容进行修改演绎时,请署名并以相同方式共享,谢谢。
转载文章请在开头明显处标明该页面地址。公众号等其它盈利性质的转载请联系 2823666460@qq.com。