#include #include int main (void) { int a[] = {1,2,3,4,5}; int b[] = {0,0,0,0,0}; int *p = b; for (int i =0; i <
after the first for{},p point at b[5],but the size of b is 5,so b[5] value is unknow,the printf *p is the same value as a[i],the reason may be in memory b[5] is a[0].