Explain the difference between malloc() and calloc() function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference function call by value & function call by reference?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
Why do we use & in c?
In a header file whether functions are declared or defined?
Explain how do you print only part of a string?
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
Simplify the program segment if X = B then C ← true else C ← false
What is a node in c?
What is memcpy() function?
Difference between MAC vs. IP Addressing
What is the benefit of using an enum rather than a #define constant?
For what purpose null pointer used?