#include "string"char szbuffer[] = {"abc"};int size = strlen(szbuffer); printf("字符串的长度=%d",size);
int l;int str1[128];strcpy(str1,"hello");l=strlen(str1);printf("l=%d",l);