Multiple choice softskills creativity

Header file of exit() and memset()??

  1. process.h & Dos.h

  2. string.h & process.h

  3. process.h & string.h

  4. Dos.h & Process.h

Reveal answer Fill a bubble to check yourself
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.