What will be the output of the following program?
class FloatConversion
{
public static void main(String args[])
{
int i = 44;
float f = 98.42f;
double d = 103.67;
f = i;
d = f;
i = d;
System.out.println("i = " + i);
System.out.println("f = " + f);
System.out.println("d = " + d);
}
}