#include <stdio.h>
#include <math.h>
#include <stdbool.h>



int main(void)
{
	void * variable ;
	void * i = (void *)24 ;

	_Bool t = true ;

	(t) ? (variable = i) : NULL;

return 0;
}
