C Functions Question: Download C Functions PDF

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

Tweet Share WhatsApp

Answer:

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().

Download C Functions PDF Read All 45 C Functions Questions
Previous QuestionNext Question
Tell us the use of fflush() function in C Language?What is function prototype in C Language?