Do you know the difference between malloc() and calloc() function?
No Answer is Posted For this Question
Be the First to Post Answer
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Explain what is the difference between the expression '++a' and 'a++'?
What is an lvalue in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
a c code by using memory allocation for add ,multiply of sprase matrixes
Explain the concept and use of type void.
What are the different types of errors?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What happens if you free a pointer twice?
Why preprocessor should come before source code?
Is it better to bitshift a value than to multiply by 2?