โช Choose the correct option.
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
");
}
#define SIZE sizeof(int)
main(){ int i=-1;
if( i < SIZE )
printf("True
");
else
printf("False
");
}