Question from the Objective-C test

What is the output of the following Objective-C code? @interface MyClass : NSObject - (void)doSomething; @end @implementation MyClass - (void)doSomething { NSLog(@"%@", self); } @end int main(int argc, const char * argv[]) { MyClass *myClass = [[MyClass alloc] init]; [myClass doSomething]; return 0; }