易百教程

输出字符值

在C语言中,对于字符数据输出:单个字符使用%c,字符串使用%s

示例代码

#define __STDC_WANT_LIB_EXT1__ 1
#include <stdio.h>
#include <limits.h>               // For CHAR_MAX
#include <ctype.h>                // For isprint()

int main(void)
{
    int count = 0;

    printf_s("可打印的字符如下:
");

    // 迭代char类型的所有值
    for (int code = 0; code <= CHAR_MAX; ++code)
    {
        char ch = (char)code;
        if (isprint(ch))
        {
            if (count++ % 32 == 0)
                printf_s("
");
            printf_s(" %c", ch);
        }
    }
    printf_s("
");
    system("pause");
    return 0;
}

执行上面示例代码,得到以下结果:

可打印的字符如下:

   ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ?
 @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \\ ] ^ _
 ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~