Contact: aviboots(AT)netvision.net.il
41,614 questions
54,277 answers
573 users
#include <stdio.h> int main(void) { _Bool a = 1; _Bool b = 0; if (a) { puts("a = true"); } if (!b) { puts("b = false"); } return 0; } /* run: a = true b = false */