C語言庫函數探究

1、strlen()求字符串長度 1 //模擬實現strlen函數 2 #include<stdio.h> 3 #include<stdlib.h> 4 #include<string.h> 5 #include<assert.h> 6 int my_strlen1(const char* str) //藉助臨時變量實現 7 { 8 int count = 0; 9
相關文章
相關標籤/搜索