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