If there is declaration` int a[] = {2,4,6,8,10}, *p= a;` a 's va
If there is declaration` int a[] = {2,4,6,8,10}, *p= a;` a 's value is the first address of the array, then` *(p++)`'s value is 4. ~@[](1)答案:FALSE
-->