What is the value of s?
NSMutableString *s = [NSMutableString stringWithString: @"123"]; [s appendString: @"456"];
123456
123
This code contains an error.
456