โช Choose the correct option.
What will be output of the following “C” code?
#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
");
}