代码:
#include <iostream>
#include <string> using namespace std; int main(){
char s1[]="hello";
char *s2="hello";
cout<<sizeof(s1)<<" "<<sizeof(s2)<<endl; return ;
}
输出:
6 8
分析:
sizeof后面跟数组,需要计算数组长度,如果是char型数组还要计算'\0'。
2023-07-27 10:29:58
代码:
#include <iostream>
#include <string> using namespace std; int main(){
char s1[]="hello";
char *s2="hello";
cout<<sizeof(s1)<<" "<<sizeof(s2)<<endl; return ;
}
输出:
6 8
分析:
sizeof后面跟数组,需要计算数组长度,如果是char型数组还要计算'\0'。