C++ examples for Data Type:char array
Initialized string
#include <iostream> using namespace std; int main()// www .j av a 2 s.c o m { char str[] = "Farewell! thou art too dear for my possessing."; cout << str << endl; return 0; }