[Linux file] write string instance with carriage return newline

Source: Internet
Author: User

 //This is based on the previous instance with the Strcat function resolved the carriage return line of the problem   #include  <fcntl.h>  #include  <stdio.h>   #include  <string.h> int main (int argc,char *argv[])  {    int fd;      //File Descriptor    int temp;     //temporary variable    char writebuf[30];  //for storing write strings    char  endbuf[] =  "\ n";   //store a carriage return newline symbol    if (argc != 2)       //If reference string error    {     printf ("plz input the  correct file name as  ' exam308writefun filename ' \ n ');      // Output hint string      return 1;   }   else    {     fd = open (* (argv + 1), o_rdwr| O_CREAT,S_IRWXU);      //Open TextIf not, create    }   printf ("the file descriptor is %d\n", FD);// Print the file descriptor    printf ("plz input the strings!\n");    gets (WRITEBUF);                          //writes the data entered by the terminal to the file    strcat (WRITEBUF,ENDBUF);//Add line break     temp = write (Fd,writebuf,strlen (WRITEBUF))    //use file descriptor to invoke file     printf ("the input length is %d\n", temp);       close (FD );    return 0; }


This article is from the "10628473" blog, please be sure to keep this source http://10638473.blog.51cto.com/10628473/1983010

[Linux file] write string instance with carriage return newline

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.