#include <stdio.h>

int main()
{
	int hoge = !NULL;

	printf("hoge = %d\n", hoge);
	if (hoge != NULL) {
		printf("hoge != NULL\n");
	} else {
		printf("hoge == NULL\n");
	}
	return 0;
}
