如何用C语言编写一个程序,输入任意输入一个正整数,反序输出每一位
#include<stdio.h>
int main(){
int n;
scanf("%d",&n);
while(n>0){
printf("%d",n%10);
n=n/10;
}
return 0;
}