What will the following C statement do?
#include < setjmp.h >
int setjmp(jmp_buf env);
#include < setjmp.h >
int setjmp(jmp_buf env);A. save the current state of the registers into env
B. resets the registers to the values saved in env
C. provides a definition for env structure
D. accept variable(env) argument lists to be written
Answer: Option A

Join The Discussion