嵌入式 对某一字符串数组的某一位进行赋值为0的作用

#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 :

嵌入式 <wbr>对某一字符串数组的某一位进行赋值为0的作用

 

你可能感兴趣的:(嵌入式 对某一字符串数组的某一位进行赋值为0的作用)