求解
使用指针编写一个程序,将输入的10个整数逆置后输出。(不用函数) #include <stdio.h>#include <stdlib.h>
main(void)
{
int * p , k ;
if((p = (int * )malloc(sizeof(int) * 10))) {
for(k = 0 ; k < 10 ; k ++) scanf("%d" , p ++) ;
p -- ;
printf("%d" , * p --) ;
for(k = 1 ; k < 10 ; k ++) printf(" , %d" , * p --) ;
free(++ p) ;
} else {
fprintf(stderr , "Error : malloc() failure !\n") ;
}
}
编译运行实况:
C:\Bin>g++ -o x x.c
C:\Bin>x
10
20
30
40
50
60
70
80
90
100
100 , 90 , 80 , 70 , 60 , 50 , 40 , 30 , 20 , 10
C:\Bin>
页:
[1]