What is the difference between exit() and _exit()?
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 |
What is the difference between exit() and _exit() function in c?
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
What is a program?
main() { int i; printf("%d",i^i); }
What is d'n in c?
Why do we need arrays in c?
What are the different types of pointers?
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
Which is better oop or procedural?
Combinations of fibanocci prime series
How do you list a file’s date and time?
pgm to find middle element of linklist(in efficent manner)