What is output by the following code: float f = 7.9f; int i = f; printf("i = %i/n", i);
i = f
i = 7.9
i = 8
i = i
i = 7