#include #include using namespace std; int main() { char c[] = "Hello"; cout << c << endl; cout << strlen(c) << endl; return 0; }