【C++】面試題目,整理自牛客網

來源 1、寫出完整版的strcpy函數 char * strcpy( char *strDest, const char *strSrc ) { assert( (strDest != NULL) && (strSrc != NULL) ); char *address = strDest; while( (*strDest++ = * strSrc++) != ‘\0’ ); re
相關文章
相關標籤/搜索