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 |
What does typedef struct mean?
to find the program of matrix multiplication using arrays
Does c have function or method?
write a program wch produces its own source code aas its output?
what is available in C language but not in C++?
10 Answers CTS, TCS,
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.
Why doesn't the code "a[i] = i++;" work?
Write a program to print “hello world” without using semicolon?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
main() { int a; a=++100; printf("%d",a); getch(); }
What is the difference between declaring a variable by constant keyword and #define ing that variable?