char bytes[] = { 1, 2, 3, 4};
NSString * f = [[NSString alloc] initWithBytes:bytes length:4 encoding:NSASCIIStringEncoding];
[f release];
NSLog(@"%@", [f description]); // Why no 'message sent to deallocated instance "?
[f release];
char bytes[] = { 1, 2, 3, 4};
NSString * f = [[