📄 main.cpp
字号:
#include<iostream.h>
#include <assert.h>
void main()
{
char* str = "abc";
/**********found*******/
assert(sizeof(str)==3);
cout<<"sizeof(str) = 4"<<endl;
char str2[20] = "ab";
/**********found*******/
assert(sizeof(str2)==2);
cout<<"sizeof(str2)=20"<<endl;
char str3 = 23;
/**********found*******/
assert(sizeof(str3)==4);
cout<<"sizeof(str3)=1"<<endl;
return;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -