gpt4 book ai didi

c++ - 如何获取数组中已用空间的大小? (不是大小); C++

转载 作者:行者123 更新时间:2023-11-30 01:32:05 25 4
gpt4 key购买 nike

#include<iostream>
using namespace std;

int main()
{
char arr[200];
while(1) {
cin >> arr;
int i = sizeof(arr);
cout << "The arr input is "<< arr
<< " and the size of the array is "<< i << endl;
}
return 0;
}

对于34的输入,这段代码输出:arr输入为34,数组大小为200


虽然我希望它获得数组已用空间的大小。所以对于最后一个输入,我希望它输出:arr 输入是 34,数组的大小是 2


有人能告诉我怎么做吗?

最佳答案

也许你想要strlen(arr)这里。它必须以 null 结尾,否则 cout << arr不会奏效的。

您需要 #include <cstring>

关于c++ - 如何获取数组中已用空间的大小? (不是大小); C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2233503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com