Question
Co-routines and subroutines
| Aspect | Co-routines | Subroutines |
|---|---|---|
| Execution Flow | Cooperative multitasking where control is voluntarily yielded | Sequential execution controlled by a calling program |
| Control | Co-routines can suspend and resume execution at specific points | Subroutines execute from start to finish and return control |