Complicated Declarations - Programming

Q1:

It is not necessary to typecast the address returned by malloc().

A True

B False

ANS:A - True

Type casting is a way to convert a variable from one data type to another data type. For example, if you want to store a long value into a simple integer then you can type cast long to int.