# c-study **Repository Path**: gaotiefeng/c-study ## Basic Information - **Project Name**: c-study - **Description**: No description available - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-04 - **Last Updated**: 2021-08-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # c-study #### 介绍 - C 语言是一种通用的高级语言,最初是由丹尼斯·里奇在贝尔实验室为开发 UNIX 操作系统而设计的。 - C 语言最开始是于 1972 年在 DEC PDP-11 计算机上被首次实现。 - 在 1978 年,布莱恩·柯林汉(Brian Kernighan)和丹尼斯·里奇(Dennis Ritchie)制作了 C 的第一个公开可用的描述,现在被称为 K&R 标准。 - UNIX 操作系统,C编译器,和几乎所有的 UNIX 应用程序都是用 C 语言编写的。由于各种原因,C 语言现在已经成为一种广泛使用的专 #### C关键字 | | | | | |---|---|---|---| | auto | double | int | struct | | break | else | long | switch | | case | enum | register | typedef | | char | extern | return | union | | const| float | short | unsigned | | continue| for | signed | void | | default | goto | sizeof | volatile | | do | if | static | while | #### 标准库 - 输入和输出 (文件) - 字符类别测试 - 字符串函数 - char *strchr(cs,c) c字符在cs字符第一次出现的位置指针,不存在返回NULL - 数学函数 - 实用函数 - 诊断函数 - 可变参数表 - 非局部跳转 - 信号 - 日期与时间函数 - 具体实现相关限制