#include <stdio.h>

int main(void) {
	
	char *p = "hello";
	printf("the address of the string hello is: %p\n", p);
	printf("the dereference of pointer p is: %c\n", *p);
	printf("the address of the p is: %p\n", &p);
	
	return 0;
}
