What is Nonlocal jump and unconditional Jump?

longjmp() and setjmp() functions implement a nonlocal jump of program execution."longjmp" jumps to a program state previously recorded by "setjmp". Both longjmp() and setjmp() functions must have the header file given below included.


#include <setjmp.h>


When your program calls setjmp(), the current state of the program is saved in a structure of type jmp_buf which is declared in <setjmp.h>. If one want to restore the program to original state it can be done by called longjmp() function. This will restore the program to the state it was when the setjmp() was called.


The goto is a unconditional branching statement used to transfer control of the program from one statement to another. This statement for branching must be within the same function for using goto. In other words it is not possible to implement goto between functions. In contrast the longjmp() and setjmp() functions need not be implemented in the same function.


Whatever may be the jump say goto or longjmp() generally it is good to avoid such jump conditions to have a good program.

Questions by GeekAdmin   answers by GeekAdmin

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions