Computer Science, asked by AdityaKumarRAONE, 1 month ago

Mention the type of values obtained in the following expression:-

1) char c; int a; double d;
c-d/a;

2) double d; int a; long l;
(d/a)*a/d;

3) float f; char c; short s;
(int)f + c/s;

4) int a; float f; double d; char c;
(float) (a/t) - d*c;

Answers

Answered by ajb7899
3

Explanation:

i) double

ii) double

iii) float

iv) float

Answered by priyanshi0712
0

Answer:

double

double

float

float

Similar questions