What will be the output of the following program?

Practice C Preprocessor – What will be the output of the following program?
#define SIZE sizeof(int)
main(){ int i=-1;
if( i < SIZE )
printf("True
");
else
printf("False
");
}