#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> typedef struct line {

请教高手写一下程序说明

#include <stdio.h> // 该头文件中含有文件输入输出函数,如fprintf,sprintf。包含该头文件就可以使用这些函数
#include <stdlib.h> // 含有exit,abort等函数,包含该头文件就可以使用这些函数
#include <string.h> // 含有字符串处理函数,如strlen,strcmp等,包含该头文件就可以使用这些函数
#include <ctype.h> // 包含一些对字符处理的函数,如大小写转换、判断字符是否为数字等,包含该头文件就可以使用这些函数
typedef struct line {
} *LinePtr; // 为该结构取别名,或定义其指针别名
温馨提示:答案为网友推荐,仅供参考
第1个回答  2011-06-25
自己看书吧,就算你问明白了这一个基础知识,还有千千万万的基础知识等着你呢、
相似回答