Hi I am wondering where the program counter goes when the program returns from interrupt service routine? I know when the interrupt event occurs the PC is pushed into the st
When an instruction is executing then the program counter keeps the address of the next instruction to be executed. When an interrupt occurs, then processor do the following:
Suspends the execution of the program being executed and save its context. This means it saves the address of the next instruction to be executed, i.e, the value of the program counter and other relevant data.
Update the program counter with the starting address of that interrupt handler routine.
When the interrupt handler routine is completed, CPU can resume execution of the program at the point of interruption.

Interrupt is occurred at instruction i and after completion user program resumes its execution from i+1 instruction.