代码实现:
#include <iostream.h>
#include <stdio.h>
#include <string.h>
int main()
{
char buffer[32];
char str[32];
cout<<"请输入一个数:"<<endl;
cin>>buffer;
int len=0;
len=strlen(buffer);
cout<<"长度为"<<len<<endl;
for(int i=0;i<len;i++)
{
str[i]=buffer[len-i-1];
}
str[len]='/0';
cout<<str;
return 0;
}