Mine
public text v1 · immutable#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;
}
#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;
}