C++之用指针倒序输出字符串


#include 
#include 
using namespace std;
void invstr(char*s)
{
    char *p;
    int length=strlen(s);
	for(p=s;length>=0;length--)
	{
		cout<<*(p+length-1);
	}
}
int main()
{
	char s[100];
	cin>>s;
	invstr(s);
	return 0;
}


你可能感兴趣的:(指针,字符串,c++)