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
Is c easier than java?
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
Explain a pre-processor and its advantages.
What is call by reference in functions?
What are the key features in c programming language?
Why is %d used in c?
Write a program to use switch statement.
Why pointers are used in c?
What does d mean?
What is wrong with this declaration?
Explain what is the difference between #include and #include 'file' ?
What is && in c programming?
what is the structure pointer?
Describe the difference between = and == symbols in c programming?
Why is this loop always executing once?