#include <stdio.h>
main() {
if (sizeof(int) > -1)
printf("True");
else
printf("False");
}
Can anybody tell me why this code gives answer as False while the size of integer is 4.
#include <stdio.h>
main() {
if (sizeof(int) > -1)
printf("True");
else
printf("False");
}
Can anybody tell me why this code gives answer as False while the size of integer is 4.