what is the difference between exit() and _exit() functions?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / bajishareef
exit() perform the termination operation, but before that it closes all files and flushes the I/O buffers.
_exit() just terminates the program
Is This Answer Correct ? | 1 Yes | 0 No |
what is the use of call back function in c?tell me with example
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
how can I convert a string to a number?
wat s the meaning of (int *)p +4;
What is bubble sort technique in c?
What is Dynamic Initialization.
How are Structure passing and returning implemented by the complier?
What is meant by recursion?
How to add two numbers with using function?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
Is null a keyword in c?