String Formatting In Objective-C

String Formatting In Objective-C

To do formatting in objective-c, the result is 120.54.

NSLog([NSString stringWithFormat:@"%.2f", 123*0.98]);  

It is nearly equivalent to the code in c:

printf("%.2f", 123*0.98);  

Reference