Do you know the difference between exit() and _exit() function in c?


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

Post New Answer

More C Interview Questions

what is the return type of printf

3 Answers  


When should I declare a function?

0 Answers  


write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.

0 Answers   BirlaSoft,


How can this be legal c?

0 Answers  


What is the best style for code layout in c?

0 Answers  






Program to simulate second clock

2 Answers  


What is the difference between getch() and getche()?

1 Answers   NSPL,


Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

0 Answers   TCS,


Write a program to compute the following 1!+2!+...n!

4 Answers  


What is the difference between null pointer and wild pointer?

0 Answers  


how the compiler treats any volatile variable?Explain with example.

1 Answers   Tata Elxsi,


main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }

4 Answers   CitiGroup,


Categories