For the following code fragment, what’s the output? float f1 = 0.2, f2 = 0.5; printf("(f1*f1 == 0.1) = %d", f1*f1 == 0.1); printf("(f1+f1 == 0.07) = %d", f1+f1 == 0.07);