#include <stdio.h>

void asdf_mother(char ** t) {
	(*t)++;
}


void asdf(char ** t) {
	asdf_mother(*&t);
}


main() {
	char t[]  = "DC IN";
	char * tx = t;
	char z;
	asdf(&tx);
	z = *tx;
	
	printf("t = %s, tx = %s, z = %c\n", t, tx, z);
	return 0;
}