1. 程式人生 > >C語言 sizeof 、strlen

C語言 sizeof 、strlen

直接看程式碼:

#include <string.h>
#include<stdio.h>
#include<stdlib.h>
int main(){
	
char str[20] = "0123456789";
int a = strlen(str); //*a = 10*,指的是長度  / 
int b = sizeof(str);//*b = 20*,指的是記憶體空間/
printf("%d",c);	
}


轉載:https://blog.csdn.net/M_joy666/article/details/80471230