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
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Is flag a keyword in c?
What is #define size in c?
What is c standard library?
Where is c used?
What are the key features in c programming language?
What is character set?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
List the different types of c tokens?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
What is a #include preprocessor?
What is unary operator?
What is "Duff's Device"?
How do you convert strings to numbers in C?
What is the difference between local variable and global variable in c?