if.c 85 Bytes
Newer Older
lxq's avatar
lxq committed
1 2 3 4 5 6
int main() {
    float a = 5.555;
    if (a > 1)
        return 233;
    return 0;
}