码迷,mamicode.com
首页 > 其他好文 > 详细

<C Primer Plus>9 Introducing getchar() and putchar()

时间:2017-04-03 11:27:19      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:mon   bin   put   nbsp   getch   demo   blog   ram   math   

 1 #include <stdio.h>
 2 #include <math.h>
 3 #define    SPACE ‘ ‘
 4 int main(void){
 5     char ch;
 6 
 7     while ((ch = getchar()) != \n){
 8         if (ch == SPACE){
 9             putchar(ch);
10         }
11         else{
12             putchar(ch + 1);
13         }
14     }
15     //putchar(ch);
16 
17     return 0;
18 }

REMEBER 

It demonstates a characteristic C programming style----combing two actions in one expression.

<C Primer Plus>9 Introducing getchar() and putchar()

标签:mon   bin   put   nbsp   getch   demo   blog   ram   math   

原文地址:http://www.cnblogs.com/michael2016/p/6661489.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!