Contact: aviboots(AT)netvision.net.il
39,939 questions
51,876 answers
573 users
#include <stdio.h> #include <stdbool.h> int main(void) { bool b = true; printf("%s", b ? "true" : "false"); return 0; } /* run: true */
#include <stdio.h> #include <stdbool.h> int main(void) { bool b = true; fputs(b ? "true" : "false", stdout); return 0; } /* run: true */