c语言用指针求数组长度

#include<stdio.h>
int main()
{
char a[5]="abcd",*t,*s;
t=a;s=t;
while(*s++)
{
printf("%d\t",t-s-1);
}
}
这是什么意思,

指针运算,t - s表示遍历了几个字符