From b6ae427cda819c4b9ae693779b73d1c0744fb837 Mon Sep 17 00:00:00 2001 From: upasanapandey <33151233+upasanapandey@users.noreply.github.com> Date: Fri, 27 Oct 2017 19:58:12 +0530 Subject: [PATCH] Update sizeof.cpp --- sizeof.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sizeof.cpp b/sizeof.cpp index d5df6bc..3892c96 100644 --- a/sizeof.cpp +++ b/sizeof.cpp @@ -5,7 +5,7 @@ using namespace std; int main(int argc, char const *argv[]){ system("cls"); //system("cls") is used to clear screen. - +//Sizeof is used to generate size of variable or datatype. cout << "Size of char is " << sizeof(char) << "\n"; cout << "Size of signed char is " << sizeof(signed char) << "\n"; cout << "Size of unsigned char is " << sizeof(unsigned char) << "\n";