溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發(fā)技術 > 
  • 編程語言 > 
  • 使用write函數(shù)來編寫一個程序,在程序中指定一個文件,用戶可以向程序中一次寫入不超過80個字符的數(shù)

使用write函數(shù)來編寫一個程序,在程序中指定一個文件,用戶可以向程序中一次寫入不超過80個字符的數(shù)

發(fā)布時間:2020-07-04 07:20:10 來源:網(wǎng)絡 閱讀:578 作者:銀河星君 欄目:編程語言

/*

  • 使用write函數(shù)來編寫一個程序,在程序中指定一個文件,用戶可以向程序中一次寫入不超過80個字符的數(shù)據(jù)。
    */
    #include <sys/types.h>
    #include <unistd.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <sys/stat.h>
    #include <fcntl.h>
    #include <string.h>

#define FLAGS O_RDWR|O_APPEND
#define SIZE 80
#define FILENAME "/home/mrhe/hello"

int main(int argc, char argv[])
{
int count;
int fd;
char write_buf[SIZE];
const char
pathname=FILENAME;
if((fd=open(pathname,FLAGS))==-1)//調(diào)用open函數(shù)打開文件
{
printf("error,open file failed!\n");
exit(1);
}
printf("OK,open file successful!\n");
printf("Begin write:\n");
gets(write_buf);
count=strlen(write_buf);
if(write(fd,write_buf,count)==-1)//要寫入文件的數(shù)據(jù)的字節(jié)數(shù)
{
printf("error,write file failed!\n");
exit(1);
}
printf("OK,write %d strings to file!\n",count);
return 0;
}

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI