字符类型简介

char类型表示ASCII字符。字符常量用单引号括起来。

#include <stdio.h>

int main() {
    char c = 'x'; /* assigns 120 (ASCII for x) */
}

可以使用%c格式说明符打印出ASCII字符。

#include <stdio.h>

int main() {
    char c = 'x'; /* assigns 120 (ASCII for x) */
    printf("%c", c); /* "x" */
}

使用%d修辞符来显示数值。

#include <stdio.h>

int main() {
    char c = 'x'; /* assigns 120 (ASCII for x) */

    printf("%d", c); /* "120" */
}

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

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

相关推荐

发表回复

登录后才能评论