Input
Output
#include <iostream> #include <cstring> using namespace std; int main(){ char a[14]={'h','e','l','l','o','\0'}; char b[]="onlinetpoint"; cout << "Char Array Value for a is: " << a << endl; cout << "String Literal Value For b is: " << b; return 0; }