C語言的put函式彙總

2021-06-18 16:53:37 字數 612 閱讀 4182

1、int putc(int ch, file *stream);

輸出一字元到指定流中

int main(void)

2、int putchar(int ch);

在stdout上輸出字元,stdout可以重定位,預設是螢幕

int main(void)

3、int putch(char ch);

輸出字元到螢幕上

int main(void)

4、int fputc(int ch, file *stream);

與 putc 作用相同,區別在於 putc 是巨集,fputc 是函式。

5、int fputchar(char ch);

與 putchar 作用相同,區別在於 putchar 是巨集,fputchar 是函式。

6、int puts(char *string);

按行將字串送到流stdout中

int main(void)

7、int fputs(char *string, file *stream);

送乙個字串到乙個流中

int main(void)

或者int main(void)

**:

C語言的get函式彙總

1 int getc file stream 從指定輸入流 stream 的當前位置讀取乙個字元,若讀到檔案尾而無資料時便返回eof。main 檔案內容為 123456回車,輸出 5 2 int getchar void getchar 從控制台讀取乙個字元,並回顯。當程式呼叫getchar時,程式...

C語言記憶體操作函式彙總

一 malloc calloc 名稱 malloc calloc 功能 動態記憶體分配函式 標頭檔案 include h 函式原形 void malloc size t size void calloc size t num,size t size 引數 size 分配記憶體塊的大小 num 分配記...

c語言記憶體操作函式彙總

一 malloc calloc 名稱 malloc calloc 功能 動態記憶體分配函式 標頭檔案 include h 函式原形 void malloc size t size void calloc size t num,size t size 引數 size 分配記憶體塊的大小 num 分配記...