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

2024-12-03 01:28:19
推荐回答(5个)
回答(1):

头文件中申明了可以调用的函数。

你可以打开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

。。。

回答(2):

stdio.h就是指“standard input&output"
意思就是说标准输入输出头文件!
所以了,用到标准输入输出函数时,就要调用这个头文件!

回答(3):

在说什么啊 不懂诶

回答(4):

你是大学生啊!!!!!
我预备年级就知道了
你是要变有戏吗?
那多了~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
说不完

回答(5):

。。。。。。