8 lines
122 B
C++
8 lines
122 B
C++
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
bool my_bool = false;
|
|
|
|
printf("%s\n", my_bool ? "true" : "false"); // breakpoint 1
|
|
}
|