All pastes #2093816 Raw Edit

Mine

public text v1 · immutable
#2093816 ·published 2011-11-11 15:00 UTC
rendered paste body
#include <stdio.h>
#include <stdbool.h>

int
main()
{
    bool val;
    val = (bool) -1;
    printf("%d %d %zd\n", val, (int) val, sizeof(val));
    return 0;
}