what is the difference between exit() and _exit() functions?
Answer Posted / 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 |
Post New Answer View All Answers
In C language, a variable name cannot contain?
What is formal argument?
What is maximum size of array in c?
What is difference between array and structure in c?
Tell me is null always defined as 0(zero)?
How variables are declared in c?
What is the total generic pointer type?
What is the difference between null pointer and wild pointer?
What is equivalent to ++i+++j?
How do we print only part of a string in c?
How can I recover the file name given an open stream?
What is scope and lifetime of a variable in c?
What are different types of operators?
What is #error and use of it?
What are the valid places to have keyword “break”?