Answers for "printf with bool"

C
3

printf with bool

printf("%s", x ? "true" : "false");
Posted by: Guest on December-14-2020
0

printf with bool

printf(x ? "true" : "false");
Posted by: Guest on April-13-2021

Code answers related to "C"

Browse Popular Code Answers by Language