InterviewSolution
Saved Bookmarks
| 1. |
Which among the given header file is used to handle different signals reported during program execution?(a) stdarg.h(b) assert.h(c) signal.h(d) setjmp.hThis question was posed to me in exam.This interesting question is from Signal Handling topic in chapter C Library of C |
|
Answer» RIGHT choice is (c) signal.h To explain I would say: signal.h is the header file that defines one TYPE and two FUNCTIONS and MANY MACROS to handle different signals reported during the execution of the program. |
|