1 extern int func(); 2 3 int main(int argc, char **argv) { 4 func(); // Break here 5 func(); // Second 6 return 0; 7 } 8