Some C 

#include <stdio.h>

main()
{
    int     i = 10;
    long    j = 10;
    double  f = 10.0;
    char   *s = "Hello World";

    printf("sizeof(i): %lu\n", sizeof(i));
    printf("sizeof(j): %lu\n", sizeof(j));
    printf("sizeof(f): %lu\n", sizeof(f));
    printf("sizeof(s): %lu\n", sizeof(s));
}