Is malloc memset faster than calloc?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the difference between exit() and _exit() function?
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
How does variable declaration affect memory?
Differentiate b/w Modify and Update commands giving example.
Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
how to do in place reversal of a linked list(singly or doubly)?
Explain how can you tell whether two strings are the same?
What are the different file extensions involved when programming in C?
What are 'near' and 'far' pointers?
What is a union?
Why does this code crash?
What is the data segment that is followed by c?