第 6 題 - 解答


#include<stdio.h>
int main()
{
    int i;
    for(i=40;i<128;i++){
         printf("ASCII:%d = %c \n",i,i);
    }
    return 0;
}