size of in c

C
/*
The datatype size_t is unsigned integral type.
It represents the size of any object in bytes and is returned by the
sizeof operator.
It can never be negative.
*/#include <stdio.h> 
printf("%lu\n", sizeof(char)); 
printf("%lu\n", sizeof(int)); 
printf("%lu\n", sizeof(float)); 

Source

Also in C: