[#3] Programme for checking size of Data type (Codewithharrry #6)

 A small code for checking what is size of data type like 

what is size of  'int'  or 'char' or etc






The code is 




// Date - 29/01/2022

#include <stdio.h>              

int main()


{
    printf("%lu", sizeof(double));
    return 0;



}



Comments