#include<string.h>
#include <stdio.h>
main()
{ int i;
char s[10]="123456789";
for(i=0; i<10; ++i)
printf("%3d",strlen(&s[i]));
}
9 8 7 6 5 4 3 2 1 0
#include<string.h>
#include <stdio.h>
main()
{ int i;
char s[10]="123456789";
for(i=0; i<10; ++i)
printf("%3d",strlen(&s[i]));
}
9 8 7 6 5 4 3 2 1 0
&s[i],随着i的变化,&s[i]代表数组内每个元素的地址,求从这个地址开始到s串末尾的长度