#include <stdio.h>



float ( *GetPointer( int a ) )[10]
{
	( void )a ;
	return NULL ;
}


int main(void) {
	
	GetPointer( 123 ) ;
	
	
	return 0;
}
