scanf ("%f", &GPA); This statement will read in a value to a running program. The %f means that the value should be a float. The & is the Address Operator. The value read in will be stored in memory at the address of the variable GPA.