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 |
Write a program to print distinct words in an input along with their count in input in decreasing order of their count
What is double pointer?
What are dangling pointers?
What is ambagious result in C? explain with an example.
What are the general description for loop statement and available loop types in c?
What does static mean in c?
difference between memcpy and strcpy
program in c to print 1 to 100 without using loop
Should a function contain a return statement if it does not return a value?
what is meant by flushll() in c programming?
What is the Lvalue and Rvalue?
Explain bitwise shift operators?