面試題 模擬實現strlen函數的3種方法。

第一種方法是用計數器模擬實現strlen函數。 #include<stdio.h> #include<assert.h> int my_strlen(const char *str) { int count = 0; assert(str!=NULL); while(*str!='\0') { str++; count++; } return count; } int main
相關文章
相關標籤/搜索