[#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

Popular posts from this blog

Compiling Stages in C programming | How "Compilation" work

Operators in C language | C language

Notes of C language Day to Day notes are here [ Handwritten Notes ]