int main(int argc, _TCHAR* argv[]) { char *s = "helloworld"; //char s[]="helloworld";//大家可以测试一下这两个哪个可以运行,呵呵
char temp; for(int i = 0;i<(strlen(s)/2);i++){ temp = s[i]; s[i]=s[strlen(s)-i-1]; s[strlen(s)-i-1]=temp; } cout<<s<<endl; }
|
char *s = "helloworld";这是一个常量,const,不能够被赋值
阅读(475) | 评论(0) | 转发(0) |