Example 1: c++ length of char array char* example = "Lorem ipsum dolor sit amet"; int length = strlen(example); std::cout << length << '\n'; // 26 Example ...
確定! 回上一頁