#include #include using namespace std; int main() { string s = "hello"; char x[] = "hello"; cout << s.size() << " " << strlen(x) << endl; return 0; }