int main()
{
     if (sizeof(int) > -1 )
           printf("True");
     else
           printf("False");
     return 0 ;
}
I expected the program results in "True" but after executing it results in "False". Could anyone explain why this is the case?
 
     
    