diff --git a/C++/Find_Size_of_a_Variable.cpp b/C++/Find_Size_of_a_Variable.cpp index 354514bb..a52a076e 100644 --- a/C++/Find_Size_of_a_Variable.cpp +++ b/C++/Find_Size_of_a_Variable.cpp @@ -7,6 +7,7 @@ int main() cout << "Size of int:: " << sizeof(int) << " bytes" << endl; cout << "Size of float:: " << sizeof(float) << " bytes" << endl; cout << "Size of double:: " << sizeof(double) << " bytes" << endl; + cout << "Size of double:: " << sizeof(string) << " bytes" << endl; return 0; }