c語言gets的用法
時(shí)間:
長思709由 分享
C語言中緩沖區(qū)就是內(nèi)存中開辟的一塊存儲(chǔ)空間。數(shù)組也是一個(gè)緩沖區(qū)。或者你用內(nèi)存操作函數(shù)自己去開辟一塊內(nèi)存空間也是緩沖區(qū)。下面我們來看看c語言gets的用法。
例:
void test7()
{
char str1[80];
char str2[80];
printf("please input aany 2 sentence:\n");
gets(str1);
scanf("%s",str2);
printf("string1 is:%s\n",str1);
printf("string2 is:%s",str2);
}
int _tmain(int argc, _TCHAR* argv[])
{
test7();
return 0;
}
輸入:hello world
hello world
執(zhí)行結(jié)果為:string1 is:hello world
string2 is :hello
c語言gets的用法
C語言中緩沖區(qū)就是內(nèi)存中開辟的一塊存儲(chǔ)空間。數(shù)組也是一個(gè)緩沖區(qū)?;蛘吣阌脙?nèi)存操作函數(shù)自己去開辟一塊內(nèi)存空間也是緩沖區(qū)。下面我們來看看c語言gets的用法。 例: void test7() { char str1[80]; char str2[80]; printf(please input
推薦度:
點(diǎn)擊下載文檔文檔為doc格式