#include <stdio.h>

int func(int x)
{
	return x * x;
}

int main()
{
	int (*p)(int);

	p = &func;

	printf("%d\n", (*p)(3));

	return 0;
}
