C++字符串

#include iostreamusing namespace std;int main () {char greeting[6] = {H, e, l, l, o, \\0};

编程学习网为您整理以下代码实例,主要实现:C++字符串,希望可以帮到各位朋友。

#include <iostream>

using namespace std;

int main () {
   char greeting[6] = {'H', 'e', 'l', 'l', 'o', '\0'};

   cout << "Greeting message: ";
   cout << greeting << endl;

   return 0;
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

#include iostream#include cstringusing namespace std;int main () {char str1[10] = Hello;