定义符号常量,然后输出符号常量的值(用C语言)

2024-11-30 11:47:49
推荐回答(1个)
回答1:

#include 

#define ABC        1234

int main()
{
    printf("%d\n", ABC);
    return 0;
}