C語言——計算輸入的字符串的長度

計算長度有兩個函數:strlen sizeof strlen 計算字符串裏面一共有多少個字符 sizeof 計算字符串佔的總內存空間 如: char str[20]={"123456"}; strlen(str);等於 6 sizeof(str); 等於20 #include <iostream> #include <cstring> using namespace std; i
相關文章
相關標籤/搜索