#include <stdio.h>

int main() {
	char c    = 1;
	char *cp  = &c;
	void *p   = cp;
	char **sp = p;
	char x    = **sp;
	putchar(x);
}
