#include <iostream>
using namespace std;

int main() {
	char a = 'c';
    const char* example = {&a};
	return 0;
}