Introduction

Both C and C++ include the goto statement that goes (jumps) to the statement having the given label within the same function, for example:

if ( disaster )

goto error;

// ...