C语言中哪些函数是<stdio.h>这种头文件的?

如题所述

第1个回答  2019-09-15
头文件中申明了可以调用的函数。
你可以打开stdio.h来看啊。
现在我装的是VC6.0
其默认安装目录下
C:\Program
Files\Microsoft
Visual
Studio\VC98\Include
有stdio.h文件。
/*
Function
prototypes
*/
//
函数申明
#ifndef
_STDIO_DEFINED
_CRTIMP
int
__cdecl
_filbuf(FILE
*);
_CRTIMP
int
__cdecl
_flsbuf(int,
FILE
*);
#ifdef
_POSIX_
_CRTIMP
FILE
*
__cdecl
_fsopen(const
char
*,
const
char
*);
#else
_CRTIMP
FILE
*
__cdecl
_fsopen(const
char
*,
const
char
*,
int);
#endif
_CRTIMP
void
__cdecl
clearerr(FILE
*);
_CRTIMP
int
__cdecl
fclose(FILE
*);
_CRTIMP
int
__cdecl
_fcloseall(void);
#ifdef
_POSIX_
_CRTIMP
FILE
*
__cdecl
fdopen(int,
const
char
*);
#else
_CRTIMP
FILE
*
__cdecl
_fdopen(int,
const
char
*);
#endif
_CRTIMP
int
__cdecl
feof(FILE
*);
_CRTIMP
int
__cdecl
ferror(FILE
*);
_CRTIMP
int
__cdecl
fflush(FILE
*);
_CRTIMP
int
__cdecl
fgetc(FILE
*);
_CRTIMP
int
__cdecl
_fgetchar(void);
_CRTIMP
int
__cdecl
fgetpos(FILE
*,
fpos_t
*);
_CRTIMP
char
*
__cdecl
fgets(char
*,
int,
FILE
*);
#ifdef
_POSIX_
_CRTIMP
int
__cdecl
fileno(FILE
*);
#else
_CRTIMP
int
__cdecl
_fileno(FILE
*);
#endif
。。。
相似回答