what is the difference between exit() and _exit() functions?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is c easier than java?

782


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2496


Explain a pre-processor and its advantages.

838


What is call by reference in functions?

872


What are the key features in c programming language?

813


Why is %d used in c?

744


Write a program to use switch statement.

865


Why pointers are used in c?

753


What does d mean?

772


What is wrong with this declaration?

834


Explain what is the difference between #include and #include 'file' ?

781


What is && in c programming?

886


what is the structure pointer?

1841


Describe the difference between = and == symbols in c programming?

1009


Why is this loop always executing once?

796