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 |
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
Binary tree traversing
What is indirection? How many levels of pointers can you have?
Tell me what is null pointer in c?
What is the main differences between C and Embedded C?
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
How to create struct variables?
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
why program counter is 16 bit?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
What is a static variable in c?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record