Report Bug
Qus : Which of the following leads to memory leaks in a C program?
QusWhich of the following leads to memory leaks in a C program?

A. Using malloc() without free()
B. Using calloc() without realloc()
C. Using pointers incorrectly
D. None of the above


Solution
A. Using malloc() without free()






Report Bug