In the below code if I stores the value of the sizeof(int) in a variable int a, and then compares it with -1 it shows "Yes" as a answer, otherwise "No"?
#include <stdio.h>
int main()
{
if (sizeof(int) > -1)
printf("Yes");
else
printf("No");
return 0;
}