#include <stdio.h>

int main(void) {
	
	foo("%x");
	return 0;
}

void foo(char *str)
{

	char c='c';
	printf(str);
	
	printf("\n%x",&c);
}