Can you please explain the difference between exit() and _exit() function?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Can you please explain the scope of static variables?

0 Answers  


Is there a way to switch on strings?

0 Answers  


What is the purpose of sprintf() function?

0 Answers  


WHY DO WE USE A TERMINATOR IN C LANGUAGE?

2 Answers  


main() { clrscr(); } clrscr();

6 Answers   ME, Wipro,


Eight queens puzzle

0 Answers  


Can include files be nested? How many levels deep can include files be nested?

0 Answers   Aspire, Infogain,


Explain how do you determine whether to use a stream function or a low-level function?

0 Answers  


please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC

2 Answers   Mphasis,


write a program of bubble sort using pointer?

3 Answers   TCS,


What is the difference between exit() and _exit() function?

0 Answers  


2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }

1 Answers   Wipro,


Categories