Skip to content

Latest commit

 

History

History
19 lines (10 loc) · 454 Bytes

sizeof() vs strlen().md

File metadata and controls

19 lines (10 loc) · 454 Bytes

sizeof() vs strlen()

sizeof(str) = strlen(str) + 1

sizeof 统计实际所占内存空间大小

strlen 遇到第一个'\0'结束

数组的大小必须在编译前指定好

image-20210104170748830

image-20210104170800618

sizeof() 与 sizeof(string)

sizeof 不是函数 是什么

函数指针是指针吗