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