#include int i; int main() { for (i=32;i<250;i++) { printf("%d - %c ",i,i); if((i%10)==0) printf("\n"); } }