原型:int fputs(constchar *str, file *stream)
引數解釋:
const char *str : const限制函式內部修改指標指向的資料(在函式形參使用const)
char *str 字元陣列
file *stream :stream 指向file物件的指標
返回值:正確-int非零,錯誤-eof(0)
例項:(1)利用fputs()向控制台輸出資訊
fputs("hello world", stdout); stdout - 標準輸出流
(2)寫入檔案
char* filepath = "d:\\student.txt";
file * file = null;
errno_t err;
if ((err = fopen_s(&file, filepath, "w+")) != 0)
else
fclose(file);
相似:fputc(),fgets():
fgets(buffer, size, stdin) != null
C語言 概念 fgets函式和fputs函式
fgets函式和fputs函式 一 fgets函式 fgets函式用來從檔案中讀入字串。fgets函式的呼叫形式如下 fgets str,n,fp 此處,fp是檔案指標,str是存放字串的起始位址,n是乙個int型變數。函式的功能是從fp所指檔案中讀入n 1個字元放入以str為起始位址的空間內。如果...
C語言的字串輸出fputs 函式
fputs 函式是puts 函式針對檔案定製的版本,它們的區別如下 注意,gets 丟棄輸入中的換行符,但是puts 在輸出中新增換行符。另一方面,fgets 保留輸入中的換行符,fputs 不在輸出中新增換行符,因此,puts 應與gets 配對使用,fputs 應與fgets 配對使用。這裡提到...
c 語言基礎
三個訪問描述符 public private 和protected 都可以修飾類的資料成員和成員函式 public 可以可以被任何訪問,private 只能被該類的公,私成員函式,該類的友元函式或者友元類的成員函式訪問。protected 只能被該類的公,私成員函式和該類的派生類訪問。c 中除了,和...