1#include <stdio.h>2 3void foo() {4 printf("hello world from foo"); // Set break point at this line.5}6 7int main() {8 foo();9 return 0;10}11