所谓的 C 标准库(C standard library),是指在 ISO C 或者 POSIX 标准中定义的: POSIX is a superset(超集) of the standard C library, and it's important to note that it defers to it. If C and POSIX is ever in conflict, C wins. 1. conio.h conio 是 Console Input/Output (控制台输入输出)
#include <conio.h> int getch(void);// 从控制台得到下一个字符,以ASCII值返回,并不在屏幕显示该字符 int getche(void);// 从控制台得到下一个字符,以ASCII值返回 int kbhit(void);// 判断控制台是否仍有未输入的字符.若有,则返回1,否则返回0 int putch(int);// 将一个整型数以ASCII码形式输出至控制台,输出成功则返回该整形数int ungetch(int);// 将一个整型数以ASCII码形式输
http://blog.csdn.net/songkexin/article/details/1750396 stdafx.h头文件的作用 Standard Application Fram Extend没有函数库,只是定义了一些环境参数,使得编译出来的程序能在32位的操作系统环境下运行. Windows和MFC的include文件都非常大,即使有一个快速的处理程序,编译程序也要花费相当长的时间来完成工作.由于每个.CPP文件都包含相同的include文件,为每个.CPP文件都重复处理这些文件就
函数名: harderr 功 能: 建立一个硬件错误处理程序 用 法: void harderr(int (*fptr)()); 程序例: /*This program will trap disk errors and prompt the user for action. Try running it with no disk in drive A: to invoke its functions.*/ #include <stdio.h> #include <conio.h>