Header file of exit() and memset()??
-
process.h & Dos.h
-
string.h & process.h
-
process.h & string.h
-
Dos.h & Process.h
C
Correct answer
Explanation
exit() is declared in process.h (or stdlib.h in standard C), while memset() is declared in string.h. The correct answer lists process.h first for exit(), then string.h for memset(). Option A reverses the order, and B has them paired with wrong functions.