#include
#include int main(void)
{char str[100]="hello";char *str1="hello";printf("the len of str:%d\n",strlen(str));printf("the size of str:%d\n",sizeof(str));printf("the len of str1:%d\n",strlen(str1));printf("the size of str1:%d\n",sizeof(str1));return 0;
}