I want to know what will be the result of the following code
NSString *str = @"0";
NSString *str1 = @"12";
NSLog(@"str int value %d, %d",str, str1);
Result I got is 18036, 18052
I used a wrong format specifier in my code and came across this weird result. I fixed it later through. But I wanted to know what exactly it print out.
Thanks