what are type conversions in operator overloading??

Hello Abhinisha,
Type conversions are often provided to lessen the duplication that frequently occurs when overloading operators. For example:

     int nValue = 5;
    double dValue = nValue; // int implicitly cast to a double

Hope this helps,
Vincentas

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.