[ create a new paste ] login | about

Link: http://codepad.org/cBneMZL5    [ raw code | output | fork ]

C, pasted on Jul 18:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#define INT32_MIN (-2147483648L)

void main()
{
    float myNumber = 0.0f;
    if(myNumber > INT32_MIN)
    {
        printf("Everything is OK");
    }
    else
    {
        printf("The universe is broken!!");
    }
}


Output:
1
The universe is broken!!


Create a new paste based on this one


Comments: