阅读下面的程序,将每一个printf函数的输出结果写到该行后面的括号中。 #include
main() { int a[6]={0,1,2,3,4,5,6}; int *p=a; printf(“%d\n”,*p); //1.输出 ( ) printf("%d,%d\n",*(p+2), *(a+2)); // 2.输出( ) printf(“%d,%d\n”,a[2], p[2]); // 3.输出( ) *p=8; printf("%d\n",*p); // 4.输出( ) p++; printf("%d\n",*p); // 5.输出( ) }