You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stdio.h>
|
|
int main(void)
|
|
{
|
|
int i, a[10], *p=a;
|
|
printf("Please enter 10 integers: \n");
|
|
for(p=a;p-a<10; p++)
|
|
scanf("%d", p);
|
|
|
|
printf("------ Output ------\n");
|
|
p=a; /* 把指针重新指向数组首地址 */
|
|
for(i=0; i<10; i++)
|
|
printf("%4d", *p++);
|
|
printf("\n");
|
|
return 0;
|
|
}
|
|
|