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
How can I send mail from within a c program?
What is data types?
What is the concatenation operator?
What is malloc() function?
Is main is a keyword in c?
What are qualifiers in c?
What is gets() function?
What is an arrays?
Explain how does free() know explain how much memory to release?
Write a program of advanced Fibonacci series.
What are the functions to open and close the file in c language?
How to Throw some light on the splay trees?
What is far pointer in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
How can I sort a linked list?