运行 ❯
获得你
自己的
网站
×
变更方向
变更主题,深色/浅色
转到 Spaces
#include <iostream> #include <cstring> using namespace std; int main() { char myStr[20] = "Hello World"; cout << strlen(myStr) << "\n"; cout << sizeof(myStr) << "\n"; return 0; }
11
20