#include <stdio.h>

int main(int argc, int *argv[]) {
	// your code goes here
	char str[100], d[4][3];
	printf("\nThe address is: %p", argv[0]);
	sprintf(str, "%p", argv[0]);
	printf("\nThe string is: %s", str);
    sscanf(str+6, "%2s%2s%2s%2s", d[0], d[1], d[2], d[3]);
    printf("\n\n%s / %s / %s / %s\n", d[0], d[1], d[2], d[3]);
	return 0;
}
