真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

 //這是在上一個實(shí)例的基礎(chǔ)上用strcat函數(shù)解決了回車換行的問題
 #include 
 #include 
 #include 
 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;
 }

分享名稱:[Linux文件]帶回車換行的寫入字符串實(shí)例
文章URL:http://weahome.cn/article/jecohs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部