staticintstatic_value=0;inta_function_to_call(){static_value++;// Stop inside the function here.returnstatic_value;}intsecond_function(intx){for(inti=0;i<10;++i){a_function_to_call();}returnx;}intmain(intargc,charconst*argv[]){a_function_to_call();// Set a breakpoint here to get started second_function(1);return0;}