#include <stdio.h>
#include <string.h>
int main(void) {
	printf("%p\n", strchr("qwe", (char)0));
	return 0;
}
