How to output the character corresponding to the ASCII code in C language?

In the C programming language, you can use the printf function along with the %c format specifier to output the character corresponding to the ASCII code.

Here is a code example:

#include <stdio.h>

int main() {
    int asciiCode = 65; // ASCII码值

    printf("ASCII码 %d 对应的字符为:%c\n", asciiCode, asciiCode);

    return 0;
}

The output result is:

ASCII码 65 对应的字符为:A

In the example above, we used the printf function to display the results. The %d format specifier is used to output ASCII code values, while the %c format specifier is used to output the corresponding characters.

Leave a Reply 0

Your email address will not be published. Required fields are marked *


广告
Closing in 10 seconds
bannerAds