parent
3bcb37c4c7
commit
104bf4c570
@ -0,0 +1,16 @@
|
||||
#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;
|
||||
}
|
||||
|
Loading…
Reference in new issue