欢迎来到贱贱的博客

扩大
缩小

c语言输出可见字符

 1 #include <stdio.h>
 2 
 3 
 4 void  main()
 5 {
 6     int i;
 7 
 8     //可见字符是32-126
 9     for(i=32;i<127;i++)
10     {
11         putchar(i);
12     
13     }
14     getchar();
15 }

posted on 2016-11-11 11:18  L的存在  阅读(680)  评论(0编辑  收藏  举报

导航