#include <stdio.h>
 
int main()
{
    int a[10];
    printf("a without ref.: 0x%x\n",a);
    printf("a with    ref.: 0x%x\n",&a);
    return 0;
}