溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

[Linux文件]帶回車換行的寫入字符串實例

發(fā)布時間:2020-07-26 04:01:02 來源:網(wǎng)絡 閱讀:1983 作者:銀河星君 欄目:編程語言
 //這是在上一個實例的基礎(chǔ)上用strcat函數(shù)解決了回車換行的問題
 #include <fcntl.h>
 #include <stdio.h>
 #include <string.h>
 int main(int argc,char *argv[])
 {
   int fd;      //文件描述符
   int temp;    //臨時變量
   char writebuf[30];  //用于存放寫入字符串
   char endbuf[] = "\n";  //存放一個回車換行符號
   if(argc != 2)     //如果參考字符串錯誤
   {
     printf("Plz input the correct file name as 'exam308WriteFun filename'\n");
     //輸出提示字符串
     return 1;
   }
   else
   {
     fd = open(*(argv + 1),O_RDWR|O_CREAT,S_IRWXU); 
    //打開文件,如果沒有則創(chuàng)建
   }
   printf("The File Descriptor is %d\n",fd);	//打印文件描述符
   printf("Plz input the strings!\n");
   gets(writebuf);	                        //將終端輸入的數(shù)據(jù)寫入文件
   strcat(writebuf,endbuf);			//添加換行符
   temp = write(fd,writebuf,strlen(writebuf));   //使用文件描述符調(diào)用文件
   printf("The input length is %d\n",temp);   
   close(fd);
   return 0;
 }


向AI問一下細節(jié)

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

AI