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