#include<stdio.h>
#include<stdlib.h>

int main(){
	
	printf("%d\n",sizeof(char*));
	
    char* test1 = "ABCDEFGHIJK";
    int* test2 = "ABCD";

    printf("test1 = %s\n",test1);
    printf("test2 = %s\n",test2);
 
    printf("Address of test1 = %p\n",test1);
    printf("Address of test2 = %p\n",test2);
 
    printf("Address of *test1 = %p\n",*test1);
    printf("Address of *test2 = %p\n",*test2);
  
    return 0;
}