what is the difference between exit() and _exit() functions?
Answers were Sorted based on User's Feedback
Answer / vin
The exit() and _exit() both are the same except that the
exit() perform flushing of I/O buffer before terminating
while _exit() does not perform.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / bajishareef
exit() perform the termination operation, but before that it closes all files and flushes the I/O buffers.
_exit() just terminates the program
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the purpose of 'register' keyword in c language?
What are the usage of pointer in c?
Write a program in c to input a 5 digit number and print it in words.
What are the different types of endless loops?
What are c preprocessors?
What are the different types of pointers used in c language?
Disadvantages of C language.
What is the difference between the = symbol and == symbol?
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
write a program for 7*8 = 56 ? without using * multiply operator ? output = 56
What are the header files used in c language?
Explain what are the __date__ and __time__ preprocessor commands?