> Having a hard time breaking the 4 billion decimal mark, has anyone
> done it before. Can you help me?
Certainly:
unsigned long int n = 3999999999;
int main(void)
{
n++;
return 0;
}
> having a hard time seeing the trees through the forest.
Evidently. Can you be more explicit as to what you are talking about?
Dave Decot