2008年6月12日 星期四

ascii

唔知點解, 總係有時會拿起手無 ascii table...


#include <stdio.h>

main()
{
int i;
int row = 3;

for(i=0; i<128; i++)
{
printf("%d (%c) ",i,i);
if (i % row == 2){printf("\n");}
}
printf("\n");

}

沒有留言: