What is the difference between exit() and _exit()?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
• exit(): Cleans up resources (e.g., flushes buffers).
• _exit(): Terminates the program immediately without cleanup.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
• exit(): Cleans up resources (e.g., flushes buffers).
• _exit(): Terminates the program immediately without cleanup
| Is This Answer Correct ? | 0 Yes | 0 No |
difference between malloc and calloc
What is meant by keywords in c?
How can variables be characterized?
Difference between for loop and while loop?
What is openmp in c?
diff. between *p and **p
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is the return type of sizeof?
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
Explain the concept of "dangling pointers" in C.
how many errors in c explain deply
What are the 32 keywords in c?