What are the resultant data types if the following implicit conversion are performed? Show the result with flow lines.
int i; float f; double d; char c; byte b;
a) i + c/b;
b) f/d + c*f;
c) i + f – c + b/d;
Answers
Answered by
8
Answer:
a. int, char, double
b. float, double, char, float
c. int, float, byte, char
d. float, int, char, short
e. int, float, char, byte, double
f. int, char, float, byte
Answered by
5
Explanation:
Answer:
a. int, char, double
b. float, double, char, float
c. int, float, byte, char
d. float, int, char, short
e. int, float, char, byte, double
f. int, char, float, byte
please mark as brainliest
Similar questions