C語(yǔ)言輸入輸出函數(shù)有很多,標(biāo)準(zhǔn)I/O函數(shù)中包含了如下幾個(gè)常用的函數(shù):
為上城等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及上城網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)、上城網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!
scanf,printf,getc,putc,getchar,putchar,gets,puts,fgets,fputs,fgetc,fputc,fscanf,fprintf等.
int
getc(FILE
*fp)
getc主要是從文件中讀出一個(gè)字符.常用的判斷文件是否讀取結(jié)束的語(yǔ)句為
(ch
=
getc(fp))
!=
EOF.EOF為文件結(jié)束標(biāo)志,定義在stdio.h中,就像EXIT_SUCCESS,EXIT_FAILURE定義在stdlib.h中一樣,文件也可以被理解為一種流,所以當(dāng)fp為stdin時(shí),getc(stdin)就等同于getchar()了.
int
putc(int
ch,FILE
*fp)
putc主要是把字符ch寫到文件fp中去.如果fp為stdout,則putc就等同于putchar()了.
int
getchar(void)
getchar主要是從標(biāo)準(zhǔn)輸入流讀取一個(gè)字符.默認(rèn)的標(biāo)準(zhǔn)輸入流即stdio.h中定義的stdin.但是從輸入流中讀取字符時(shí)又涉及到緩沖的問(wèn)題,所以并不是在屏幕中敲上一個(gè)字符程序就會(huì)運(yùn)行,一般是通過(guò)在屏幕上敲上回車鍵,然后將回車前的字符串放在緩沖區(qū)中,getchar就是在緩沖區(qū)中一個(gè)一個(gè)的讀字符.當(dāng)然也可以在while循環(huán)中指定終止字符,如下面的語(yǔ)句:while
((c
=
getchar())
!=
'#')這是以#來(lái)結(jié)束的.
int
putchar(int
ch)
putchar(ch)主要是把字符ch寫到標(biāo)準(zhǔn)流stdout中去.
char
*
gets(char
*str)
gets主要是從標(biāo)準(zhǔn)輸入流讀取字符串并回顯,讀到換行符時(shí)退出,并會(huì)將換行符省去.
int
puts(char
*str)
puts主要是把字符串str寫到標(biāo)準(zhǔn)流stdout中去,并會(huì)在輸出到最后時(shí)添加一個(gè)換行符.
char
*fgets(char
*str,
int
num,
FILE
*fp)
str是存放讀入的字符數(shù)組指針,num是最大允許的讀入字符數(shù),fp是文件指針.fgets的功能是讀一行字符,該行的字符數(shù)不大于num-1.因?yàn)閒gets函數(shù)會(huì)在末尾加上一個(gè)空字符以構(gòu)成一個(gè)字符串.另外fgets在讀取到換行符后不會(huì)將其省略.
int
fputs(char
*str,
file
*fp)
fputs將str寫入fp.fputs與puts的不同之處是fputs在打印時(shí)并不添加換行符.
int
fgetc(FILE
*fp)
fgetc從fp的當(dāng)前位置讀取一個(gè)字符.
int
fputc(int
ch,
file
*fp)
fputc是將ch寫入fp當(dāng)前指定位置.
int
fscanf(FILE
*fp,
char
*format,
輸入列表)
fscanf按照指定格式從文件中出讀出數(shù)據(jù),并賦值到參數(shù)列表中.
int
fprintf(FILE
*fp,
char
*format,
輸出列表)
fprintf將格式化數(shù)據(jù)寫入流式文件中.
數(shù)據(jù)塊讀寫函數(shù)
fread
(buffer,size,count,fp);
fwrite(buffer,size,count,fp);
參數(shù)說(shuō)明:
buffer:是一個(gè)指針。
對(duì)fread
來(lái)說(shuō),它是讀入數(shù)據(jù)的存放地址。
對(duì)fwrite來(lái)說(shuō),是要輸出數(shù)據(jù)的地址(均指起始地址)。
size:
要讀寫的字節(jié)數(shù)。
count:
要進(jìn)行讀寫多少個(gè)size字節(jié)的數(shù)據(jù)項(xiàng)。
fp:
文件型指針。
#include
assert.h
//設(shè)定插入點(diǎn)
#include
ctype.h
//字符處理
#include
errno.h
//定義錯(cuò)誤碼
#include
float.h
//浮點(diǎn)數(shù)處理
#include
fstream.h
//文件輸入/輸出
#include
iomanip.h
//參數(shù)化輸入/輸出
#include
iostream.h
//數(shù)據(jù)流輸入/輸出
#include
limits.h
//定義各種數(shù)據(jù)類型最值常量
#include
locale.h
//定義本地化函數(shù)
#include
math.h
//定義數(shù)學(xué)函數(shù)
#include
stdio.h
//定義輸入/輸出函數(shù)
#include
stdlib.h
//定義雜項(xiàng)函數(shù)及內(nèi)存分配函數(shù)
#include
string.h
//字符串處理
#include
strstrea.h
//基于數(shù)組的輸入/輸出
#include
time.h
//定義關(guān)于時(shí)間的函數(shù)
#include
wchar.h
//寬字符處理及輸入/輸出
#include
wctype.h
//寬字符分類
標(biāo)準(zhǔn)
C/C++
(同上的不再注釋)
#include
algorithm
//STL
通用算法
#include
bitset
//STL
位集容器
#include
cctype
#include
cerrno
#include
clocale
#include
cmath
#include
complex
//復(fù)數(shù)類
#include
cstdio
#include
cstdlib
#include
cstring
#include
ctime
#include
deque
//STL
雙端隊(duì)列容器
#include
exception
//異常處理類
#include
fstream
#include
functional
//STL
定義運(yùn)算函數(shù)(代替運(yùn)算符)
#include
limits
#include
list
//STL
線性列表容器
#include
map
//STL
映射容器
#include
iomanip
#include
ios
//基本輸入/輸出支持
#include
iosfwd
//輸入/輸出系統(tǒng)使用的前置聲明
#include
iostream
#include
istream
//基本輸入流
#include
ostream
//基本輸出流
#include
queue
//STL
隊(duì)列容器
#include
set
//STL
集合容器
#include
sstream
//基于字符串的流
#include
stack
//STL
堆棧容器
#include
stdexcept
//標(biāo)準(zhǔn)異常類
#include
streambuf
//底層輸入/輸出支持
#include
string
//字符串類
#include
utility
//STL
通用模板類
#include
vector
//STL
動(dòng)態(tài)數(shù)組容器
#include
cwchar
#include
cwctype
using
namespace
std;
C99
增加
#include
complex.h
//復(fù)數(shù)處理
#include
fenv.h
//浮點(diǎn)環(huán)境
#include
inttypes.h
//整數(shù)格式轉(zhuǎn)換
#include
stdbool.h
//布爾環(huán)境
#include
stdint.h
//整型環(huán)境
#include
tgmath.h
//通用類型數(shù)學(xué)宏
基本初等函數(shù)
我們最常用的有五種基本初等函數(shù),分別是:指數(shù)函數(shù)、對(duì)數(shù)函數(shù)、冪函數(shù)、三角函數(shù)及反三角函數(shù)。
main函數(shù)——主函數(shù);
printf函數(shù)——格式輸出函數(shù);
scanf函數(shù)——格式輸入函數(shù);
getchar函數(shù)——字符輸入函數(shù);
putchar函數(shù)——字符輸出函數(shù);
gets函數(shù)——字符串輸入函數(shù);
puts函數(shù)——字符串輸出函數(shù);
strlen函數(shù)——求字符串長(zhǎng)度的函數(shù);
strcmp函數(shù)——比較字符串的函數(shù);
sqrt函數(shù)——求開平方值的函數(shù)。
你說(shuō)要十個(gè)的,所以我就寫了十個(gè)!!這些,本人認(rèn)為都是基礎(chǔ)的函數(shù)?。?/p>
網(wǎng)頁(yè)名稱:c語(yǔ)言的基本函數(shù)都有什么,C語(yǔ)言函數(shù)有哪些
標(biāo)題網(wǎng)址:http://weahome.cn/article/dsshpic.html