大家帮看看这个C语言问题我不太懂
int main(){ unsigned char a[3] ; for(int i = -1;i < 3;++i) a[i+1] = -1-i; printf("%u%u%u",a[0],a[1],a[2]); return 0;}