How might I round a float to the nearest integer in Objective-C:
Example:
float f = 45.698f; int rounded = _______; NSLog(@\"the rounded float is %i\
Check the manual page for rint()
rint()