address.c:


main()
{
    int x = 100;

    printf("The value of x is %d\n", x);
    printf("The address of x is %u\n", &x);
}