Hello.
I've got a variable:
int Result = 42 % 84;
However its returning null on NSLog?
Hello.
I've got a variable:
int Result = 42 % 84;
However its returning null on NSLog?
To NSLog an integer, use %d
.
int result = 42 % 84;
NSLog(@"%d", result);