Why do we need to put the "@" before the quotation mark when using NSLog()?
@"..." is a NSString.
@"..."
NSString
"..." is a C string.
"..."
NSLog() takes a NSString as argument.
NSLog()