[Linux file] writes a user-entered string to a file instance

Source: Internet
Author: User

 //use the Get function from the standard input (keyboard) to obtain a carriage return to the end of the string, you can take a space  //run time screen prompts the input character, to enter the end of the  //need to note that the string to be entered in the Writebuf, Cannot exceed 30 bytes and will not take carriage return line   #include  <fcntl.h>  #include  <stdio.h>  #include   <string.h> int main (int argc,char *argv[])  {   int fd;       //file Descriptor    int temp;    //Temp variable    char writebuf[30];  //for storing write strings    if (ARGC&NBSP;!=&NBSP;2)      //If reference string error    {     printf ("Plz  input the correct file name as  ' exam307writefun filename ' \ n ');      //output Hint string      return 1;   }    Else   {     fd = open (* (argv + 1), O_RDWR| O_CREAT,S_IRWXU);      //Open the file, and if not, create the    }   printf ("the file descriptor is %d\n ", FD);//Print File descriptor    printf (" Plz input the strings and use enter  as the end!\n ");    gets (WRITEBUF);                         // Writes the data entered by the terminal to the file    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/1983008

[Linux file] writes a user-entered string to a file instance

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.