I am having a strange issue with initializing two int variables.
Here is my code:
int allHours;
int allMinutes;
NSLog(@"%d,%d",allHours,allMinutes);
And my output is: 1,-1608887932
What are these strange values? Is not 0 the default value for ints?
Thanks!