Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and beauty - Define an integer array with five elements and give it an initial value. Please indicate the values of all elements with pointers.
Define an integer array with five elements and give it an initial value. Please indicate the values of all elements with pointers.
# Contains? & ltstdio.h & gt

int? Master ()

{

int? a[5]={ 1,2,3,4,5 };

int? * p;

For (p? =? a; ? p? & lt? a+5; ? p++)

printf("%d?" ,? * p);

Return? 0;

}