Contact: aviboots(AT)netvision.net.il
41,301 questions
53,811 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 */