![]() |
VOOZH | about |
“Setjump” and “Longjump” are defined in setjmp.h, a header file in C standard library.
Geek4 Welcome to GeeksforGeeks Geek3
The main feature of these functions is to provide a way that deviates from standard call and return sequences. This is mainly used to implement exception handling in C. setjmp can be used like try (in languages like C++ and Java). The call to longjmp can be used like throw (Note that longjmp() transfers control to the point set by setjmp()).