fputs() - C語言庫函式


C語言庫函式 int fputs(const char *str, FILE *stream) 將一個字串寫入指定的流,但不包括空字元。

宣告

以下是宣告 fputs() 函式。

int fputs(const char *str, FILE *stream)

引數

  • str -- 這是一個陣列,包含null結尾的要寫入的字元序列。

  • stream -- 這是一個檔案物件的標識字串將被寫入流的指標。

返回值

這個函式返回一個非負的值,否則,錯誤返回EOF。

例子

下面的例子顯示的使用fputs() 函式。

#include <stdio.h>

int main ()
{
   FILE *fp;

   fp = fopen("file.txt", "w+");

   fputs("This is c programming.", fp);
   fputs("This is a system programming language.", fp);

   fclose(fp);
   
   return(0);
}

讓我們編譯和執行上面的程式,這將建立一個檔案file.txt 以下內容:

This is c programming.This is a system programming language.