若要C语法,请用注释后的内容替换所在的行.
#include
using namespace std; //
int main(){
unsigned char str[]="Hello,C++!";
unsigned char *pstr=str;
unsigned char space=' ';
while((*pstr)){
cout << (*pstr) << space; //printf("%c ", (*pstr));
}
return 0;
}
这么简单 你也出来问。。。。