位置:首頁 > 高級語言 > C語言標準庫 > fputs() - C語言庫函數

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.