What is the difference between `calloc()` and `malloc()`?
Q1. What is the difference between `calloc()` and `malloc()`?
Answer: calloc() initializes memory to zero
Explanation: calloc() allocates memory and initializes it to zero, unlike malloc(). NET computer science MCQs often test this core concept.