Answers

Question and Answer:

  Home  C Functions

⟩ Do you know the difference between exit() and _exit() function in C?

The following are the differences between exit() and _exit() functions:

- io buffers are flushed by exit() and executes some functions those are registered by atexit().

- _exit() ends the process without invoking the functions which are registered by atexit().

 175 views

More Questions for you: