从一维数组看sizeof和strlen 前几天学习一维数组的赋值的时候遇到这样一个问题,程序如下:char a[]="hello";char b[5]={'h','e','l','l','o'};char c[]={'h','e','l','l','o','\0'};char *d="hello";printf("%d,%d\n",sizeof(a),strlen(a));printf("%d,%d\n",sizeof... 2023-06-13 一维数组sizeofstrlen指针文章软件开发程序设计