Programming Tutorials

Comment on Tutorial - goto and labels in C By Norman Chap



Comment Added by : Jonathan H

Comment Added at : 2012-05-10 08:46:48

Comment on Tutorial : goto and labels in C By Norman Chap
Except for when you're programming low level hardware and you're worried about EMC. EM can cause corruption of registers, so by minimising the number of calls with goto statements, you can minimise risk of stack losses and the software failing to return from called routines.

View Tutorial