#include <iostream> using namespace std; int main() { string str = "Viet Nam"; cout << "String Length = " << str.size(); // you can also use str.length() return 0; }