c 字符数组与字符串

char a[]="abc";
printf("%lu\n", sizeof(a)/sizeof(char));//4

 

    char str[]="abc";
    int size = sizeof(str)/sizeof(char);
    printf("%d\n",size);//4
    int len=strlen(str);
    printf("%d\n",len);//3

 

10.已知char x[]="hello", y[]={'h','e','a','b','e'};, 则关于两个数组长度的正确描述是   B   .
     A)相同     B)x大于y    C)x小于y   D)以上答案都不对

 

posted @ 2018-12-08 15:57  liliyou  阅读(130)  评论(0编辑  收藏  举报