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