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 are the advantages and disadvantages of c language?
what is a pointer
4 Answers Bank Of America, TCS,
can anyone suggest some site name..where i can get some good data structure puzzles???
why arithmetic operation can’t be performed on a void pointer?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
Can u return two values using return keyword? If yes, how? If no, why?
How do I create a directory? How do I remove a directory (and its contents)?
What is the difference between malloc() and calloc() function in c language?
Write a program to swap two numbers without using the third variable?
int array[]={1,2,3,4,5,6,7,8}; #define SIZE (sizeof(array)/sizeof(int)) main() { if(-1<=SIZE) printf("1"); else printf("2"); }
What does #pragma once mean?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }