#include <stdio.h>

typedef int (*MainPtr_t)( void );

int main( void )
{
	printf( "%p", (void *)main );
	return 0;
}
