Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 answers
573 users
#include <stdio.h> #include <stdbool.h> int main(void) { long l = 93899; bool b = l != 0.0; fputs(b ? "true" : "false", stdout); return 0; } /* run: true */