Which function restores the environment saved by the most recent invocation of the setjmp() macro in the same invocation of the program?

Which function restores the environment saved by the most recent invocation of the setjmp() macro in the same invocation of the program? Correct Answer longjmp

longjmp() is the only function defined under the header file setjmp.h. What setjmp() does is save the contents of the registers so that longjmp() can restore the contents later.

Related Questions

If setjmp() macro returns directly from the macro invocation, it______
If setjmp() macro returns directly from the macro invocation, it . . . . . . . .
What will the following C statement do?
#include < setjmp.h >int setjmp(jmp_buf env);