Top

Discussion

Why do we write (int *) before malloc?
     int *ip = (int *)malloc(sizeof(int));

  • A.It is for the syntax correctness
  • B.It is for the type-casting
  • C.It is to inform malloc function about the data-type expected
  • D.None of the mentioned

Answer: B

None

No comment is present. Be the first to comment.
Loading…

Post your comment