printf boolean code example
Example 1: printf java boolean
boolean car = true;
System.out.printf("%b",car);
System.out.flush();
Example 2: how to print boolean in c
printf("%s", x ? "true" : "false");
Example 3: printf boo;
printf(x ? "true" : "false");