1bool bar(int const *foo) {2 return foo != 0; // Set break point at this line.3}4 5int main() {6 int foo[] = {1,2,3};7 return bar(foo);8}9