#include <stdio.h>

int main(void) {
    char a[] = "bar";
    char b[] = "bar";
    
    printf("Arrays Test: %x == %x ? %d\n",&a,&b,(a==b));


    char* x = "bar";
    char* y = "bar";
    
    printf("Literals Test: %x == %x ? %d, however x == y ? %d\n",&x,&y, (&x==&y),(x==y));
    
    return 0;
}
