使用转换说明符%c将char类型输出为字符

%c转换说明符将变量的内容输出为单个字符。%d说明符将其解释为整数。

#include <stdio.h>

int main(void)
{
  char first = 'T';
  char second = 63;

  printf("The first example as a letter looks like this - %c/n", first);
  printf("The first example as a number looks like this - %d/n", first);
  printf("The second example as a letter looks like this - %c/n", second);
  printf("The second example as a number looks like this - %d/n", second);
  return 0;
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266602.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论