1、C 语言中 include <> 与include "" 的区别?
#include < >
引用的是编译器的类库路径里面的头文件。
#include " "
引用的是你程序目录的相对路径中的头文件,如果在程序目录没有找到引用的头文件则到编译器的类库路径的目录下找该头文件。
2、C 语言中的标准库头文件
c
#include <stdio.h>
#include <math.h>
头文件 | 功能简介 |
---|---|
<stdio.h> |
标准输入输出库,包含 printf、scanf 等函数 |
<stdlib.h> |
标准库函数,包含内存分配、程序控制等函数 |
<string.h> |
字符串操作函数,如 strlen、strcpy 等 |
<math.h> |
数学函数库,如 sin、cos、sqrt 等 |
<time.h> |
时间和日期函数,如 time、strftime 等 |
<ctype.h> |
字符处理函数,如 isalpha、isdigit 等 |
<limits.h> |
定义各种类型的限制值,如 INT_MAX 等 |
<float.h> |
定义浮点类型的限制值,如 FLT_MAX 等 |
<assert.h> |
断言宏 assert,用于调试检查 |
<errno.h> |
定义错误码变量 errno 及相关宏 |
<stddef.h> |
定义通用类型和宏,如 size_t、NULL 等 |
<signal.h> |
处理信号的函数和宏,如 signal 等 |
<setjmp.h> |
提供非本地跳转功能的宏和函数 |
<locale.h> |
地域化相关的函数和宏,如 setlocale 等 |
3、C 语言中自定义头文件
在同一目录下编写如下代码测试
c
vim test.c
===========================
#include <stdio.h>
void hello(void) {
printf("hello world\n");
}
c
vim test.h
===========================
void hello(void);
c
vim testDemo.c
===========================
#include "test.h"
int main() {
hello(); //hello world
return 0;
}