string++
#include <iostream>
using namespace std;
int main() {
string h = "hello";
cout << h << endl;
char g[] = {'h','e','l','l','o','\0'};
cout << g << endl;
char t[] = {'h','e','l','\0','l','o'};
cout << t;
}INFO
#include <iostream>
using namespace std;
int main() {
string h = "hello";
cout << h << endl;
char g[] = {'h','e','l','l','o','\0'};
cout << g << endl;
char t[] = {'h','e','l','\0','l','o'};
cout << t;
}