#include using namespace std; int main() { char word[]={'h','e','l','l','o',' ','h','i','\0'}; char word2[]="Hello"; cout << word << endl; cout << word2 << endl; return 0; }