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
What is the difference between int main and void main?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is a structure member in c?
How many types of functions are there in c?
How does #define work?
What is the purpose of ftell?
Explain heap and queue.
What is far pointer in c?
What is the difference between array_name and &array_name?
What happens if a header file is included twice?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Dont ansi function prototypes render lint obsolete?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.