Contact: aviboots(AT)netvision.net.il
41,301 questions
53,811 answers
573 users
#include <stdio.h> #include <stdbool.h> int main(void) { char ch = 1; bool b = ch != 0; fputs(b ? "true" : "false", stdout); return 0; } /* run: true */