Why is %c used in C?

前端 未结 6 1043
误落风尘
误落风尘 2021-01-05 10:55

According to K&R C section 1.6, a char is a type of integer. So why do we need %c. And why can\'t we use %d for everything?

6条回答
  •  天涯浪人
    2021-01-05 11:10

    Roughly speaking, %c prints the ASCII representation of the character. %d prints its decimal value.

提交回复
热议问题