1#include <stdio.h>2void done() {}3int main() {4 puts("in main");5 done(); // Set breakpoint here6 done();7 puts("leaving main");8 return 0;9}10