编一程序,将字符串“Hello,C++!”赋给一个字符数组,然后从第一个字母开始间隔的输出该串()

2024年11月19日 14:52
有2个网友回答
网友(1):

若要C语法,请用注释后的内容替换所在的行.
#include //#include "stdio.h"
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;
}

网友(2):

这么简单 你也出来问。。。。