#include <iostream>

void f(int size)
{
	char c[size];
	c[5] = 'X';
	std::cout << c[5];
}

int main()
{
	f(10);
	return 0;
}