Can you please explain the difference between exit() and _exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
What is a floating point in c?
When should a type cast be used?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
What are pointers in C?
What is sizeof int?
What is structure and union in c?
what is structuer?
Explain how can I make sure that my program is the only one accessing a file?
WRITE A PROGRAM IN C TO MULTIPLY TWO 2-D ARRAYS
What are macros in C?
How do you determine the length of a string value that was stored in a variable?
How can I recover the file name given an open stream?