#include <stdio.h> #include <string.h> int main() { char a[10]="kkkkkkk"; printf("First is %s\n",a); a[1] = 0;//作用是把包括该位置以及其后面的所有位置进行清空 printf("Second is %s\n",a); printf("%d\n",strlen(a)); return 0; } the result of the function is :