分类: LINUX
2013-06-05 14:36:35
FILE *fopen(const char *path,const char *mode); |
if((fp=fopen("../file","r"))==NULL) |
int fclose(FILE *fp); |
void perror(const char *s); |
int fgetc(FILE *stream); |
char *fgets(char *s,int size,FILE *stream); |
/*************************************** |