Write implement string copy function strcpy () full version

Source: Internet
Author: User

A topic programmed to implement a string copy function strcpy (), many people often write the following code quickly.

void strcpy (char *strdest,char *strsrc) {    while ((*strdest++ = * strsrc++)! = ');//assignment of data in a string array, knowing the end of the string}

 Actually take a closer look at this implementation process is not perfect, strictly speaking very not rigorous, we can improve.

char * strcpy (char *strdest, const char *STRSRC)//Adds the source string const, indicating that read-only is the input parameter {    assert (strdest! = NULL) && (STRSR c! = NULL));//to the source address and destination address plus a non-0 assertion, judging validity    char *address = strdest;    while ((*strdest++ = *strsrc++)! = 0 ');//Copy the return address one by one    ;}

  This procedure looks more perfect, the interviewer will be very satisfied.

Write implement string copy function strcpy () full version

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.