在 C 中为字母和其他符号设置宏?

Setting macros for letters and other symbols in C?

我只是想知道,有没有办法在 C 中定义一个宏来替换我打印的某些符号?我尝试了一些类似于定义数字值的方法,比如 #define NUMBER 7,但我还没有为字符做同样的事情。谷歌搜索也没有给我一个正确的答案。通过宏定义字符之类的东西甚至是 C 中的东西吗?感谢您的建议!

我相信这就是您要找的

#include <stdio.h>
#define mystr "HELLO WORLD"

int main()
{
    printf("%s", mystr);

    return 0;
}