/* This program demonstrates signed and unsigned variables and how screwy they can be */ #include void main() { char c; for(c=0;(unsigned)c<128;c++) printf("%i\t",c); }