Which statment is true about the given code ?
#include #include int main() { int *a[5]; a = (int*) malloc(sizeof(int)*5); free(a); return 0; }
Answer: B
None