Computer Science, asked by shashwatupadhyay254, 3 months ago

The Example of Explicit type

conversion is :

a. double x= 30/9;

b. double x= 32.0/7;

c. double p=(double)30/11;

Answers

Answered by BrainlyProgrammer
2

Question:-

  • Example of explicit type conversion

Answer:

Option C: double p=(double)30/11;

Learn more:-

There are 2 kinds of type conversion:-

  1. Explicit type conversion
  2. Implicit type conversion
Answered by Oreki
1

D. double p = (double) 30/11;

Similar questions