1 2 3 4 5 6 7 8
#include <stdio.h> int main() { bool my_bool = false; printf("%s\n", my_bool ? "true" : "false"); // breakpoint 1 }