The correct answer is (b) The atexit() function is used to return zero if the registration succeeds, nonzero if it fails
Easiest explanation - The prototype of function is int atexit (void (*func) (void) );
The atexit() function is used to register the function pointed to by func, to be called without arguments at normal program termination.