What is the problem with following code?
#include int main() { int *p = (int *)malloc(sizeof(int)); p = NULL; free(p); }
Answer: B
No answer description available for this question.