stdio

来源:互联网 发布:sqlserver大数据查询 编辑:程序博客网 时间:2024/06/07 06:24
#include"stdio.h"
#include是编译预处理
在当前目录查找stdio.h,找不到就到include目录查找,找到后把该文件内容放到代码的#include"stdio.h"位置
因为stdio.h是标准库,所以建议用这种形式:#include<stdio.h>,这种形式是直接到include目录查找。
原创粉丝点击