Explain the difference between exit() and _exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
largest Of three Number using without if condition?
Program to find the value of e raised to power x using while loop
Program to display given 3 integers in ascending order
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
Explain what does it mean when a pointer is used in an if statement?
What is Memory leakage ?
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
What is merge sort in c?
swap two integer variables without using a third temporary variable?
Why is C language being considered a middle level language?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
How to reverse a string using a recursive function, with swapping?