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

How can my program discover the complete pathname to the executable from which it was invoked?

0 Answers  


What are qualifiers?

0 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..

0 Answers   Huawei,


What are dangling pointers? How are dangling pointers different from memory leaks?

1 Answers  






int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


write a c program to add two integer numbers without using arithmetic operator +

13 Answers   Value Labs,


WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COMES N TIMES D COMES N TIMES AND SO ON......... AT LAST UNTIL Z COMES N TIMES...............

3 Answers  


do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?

1 Answers   Oracle,


how to find the sizof of any datatype using bit manipulations

3 Answers  


what is the use of macro program

1 Answers   TCS,


What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?

1 Answers  


Categories