I want to know about the difference between the NSLog and the Printf statement in Objective-C (for application purpose...!)
NSLog
Printf
Why do all deve
From a developer point of view, the biggest difference is that NSLog supports Objective-C object types via the %@ format. NSLog also writes to stderr, while printf writes to stdout.