When browsing the source of a project on web I've found some weird to me return statement in main:
int main()
{
/* ... */
return 0x1;
}
So main is returning 0x1 radix 16
, but that's 1 radix 10
! Shouldn't main return 0
?
That is incorrect, right? By the way is it Okay to return 0x0
?
Thanks in advance.