InterviewSolution
Saved Bookmarks
| 1. |
Which of the given options is an array type used for holding information?(a) longjmp(b) setjmp(c) jmp_buf(d) no such variableI got this question during an internship interview.My doubt is from Non-Local Jumps topic in portion C Library of C |
|
Answer» RIGHT option is (c) jmp_buf Explanation: jmp_buf is an ARRAY TYPE used for holding information of macro setjmp() and function longjmp().This is a VARIABLE type defined under the header file setjmp.h. |
|