From d21a4ba13263361475210cfaa4e7b91de248d835 Mon Sep 17 00:00:00 2001 From: Muhammad Saleem Chachar <88135749+Muhammad-Saleem-Ch@users.noreply.github.com> Date: Mon, 16 Oct 2023 23:09:31 -0700 Subject: [PATCH] Update Find_Size_of_a_Variable.cpp --- C++/Find_Size_of_a_Variable.cpp | 1 + 1 file changed, 1 insertion(+) 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; }