亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學(xué)習(xí)啦>學(xué)習(xí)英語(yǔ)>專業(yè)英語(yǔ)>計(jì)算機(jī)英語(yǔ)>

      c語(yǔ)言gets的用法

      時(shí)間: 長(zhǎng)思709 分享

        C語(yǔ)言中緩沖區(qū)就是內(nèi)存中開辟的一塊存儲(chǔ)空間。數(shù)組也是一個(gè)緩沖區(qū)?;蛘吣阌脙?nèi)存操作函數(shù)自己去開辟一塊內(nèi)存空間也是緩沖區(qū)。下面我們來(lái)看看c語(yǔ)言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語(yǔ)言gets的用法

      C語(yǔ)言中緩沖區(qū)就是內(nèi)存中開辟的一塊存儲(chǔ)空間。數(shù)組也是一個(gè)緩沖區(qū)?;蛘吣阌脙?nèi)存操作函數(shù)自己去開辟一塊內(nèi)存空間也是緩沖區(qū)。下面我們來(lái)看看c語(yǔ)言gets的用法。 例: void test7() { char str1[80]; char str2[80]; printf(please input
      推薦度:
      點(diǎn)擊下載文檔文檔為doc格式
      512693