In obj-c, do i have to initialise values eg pointers, or are they auto initialised to nil?
Eg:
- (void) myfunc {
EpgSparseEntry *onNow=nil, *next=nil, *later=nil;
}
Do i need the =nil , or can i assume that variables on the stack are initialised to zero/nil?
Thanks