Originally posted here by Kezil
8*B@LL: I have those lines in there because I'm printing all chars from -127 to 255
i'm guessing you've already figured this out, but incase you havent mine works just fine. it doesnt matter if the number is positive, negitive, or really in what range it is.

for instance, if you did this:
Code:
for(i = -1000; i<1000; i++)
      printf("\ncurrent char is: %c", i);
what you would see was the entire ascii table over and over and over.