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

[#2] Adding two number [C - Language Programme] (codewithharry-#4)

All Syntex Used in C - Language