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
3
Explanation:
i) double
ii) double
iii) float
iv) float
Answered by
0
Answer:
double
double
float
float
Similar questions