Wednesday, September 23, 2009

Challenges: io_display

For the io_display function, here is my consideration:
change the for-loop to while-loop
while(*str && i<len)
   io_putch(*str++);
   i++;
}

No comments:

Post a Comment