#include <stdio.h>

int main()
{
    char a[] = "blahblah";
    
    printf("%xl\n", a);
	printf("%xl\n", &a);

    return 0;
}