int atob(int digit, int ab)
{
int iLittleEnd[sizeof(digit)];
for(int i=0;i<sizeof(digit);i++)
{
iLittleEnd[i] = digit[sizeof(digit)-i]; <----- där är errorn
}
return iLittleEnd;
}
sizeof, error: expression must have pointer-to-object type
Plees halps!
Go ahead, make my day