編寫strcpy函數(shù)

時間:2018-12-31 12:00:00 資料大全 我要投稿

編寫strcpy函數(shù)

  已知strcpy 函數(shù)的原型是

  char *strcpy(char *strDest, const char *strSrc);

  其中strDest 是目的字符串,strSrc 是源字符串,

編寫strcpy函數(shù)

。

  (1)不調(diào)用C++/C 的'字符串庫函數(shù),請編寫函數(shù) strcpy

  char *strcpy(char *strDest, const char *strSrc);

  {

  assert((strDest!=NULL) && (strSrc !=NULL)); // 2分

  char *address = strDest; // 2分

  while( (*strDest++ = * strSrc++) != ‘\0’ ) // 2分

  NULL ;

  return address ; // 2分

  }

  (2)strcpy 能把strSrc 的內(nèi)容復制到strDest,為什么還要char * 類型的返回值?

  答:為了實現(xiàn)鏈式表達式,

資料共享平臺

編寫strcpy函數(shù)》(http://m.clearvueentertainment.com)。 // 2 分

  例如 int length = strlen( strcpy( strDest, “hello world”) );

【編寫strcpy函數(shù)】相關文章:

1.編寫類String 的構造函數(shù)、析構函數(shù)和賦值函數(shù)

2.tatic函數(shù)與普通函數(shù)的區(qū)別

3.冪函數(shù)教學反思

4.筆試題(設計函數(shù))

5.筆試題(函數(shù)求和)

6.筆試題(函數(shù)類)

7.《函數(shù)的概念》說課稿

8.如何編寫求職信