(c cpp语言)

时间:2011-01-09 17:40:15

标签: c

请告诉我#define 我想在printf的地方写p时执行c程序 使用#define,但请告诉我......

2 个答案:

答案 0 :(得分:5)

#define p printf

int main() {
        p("hello world");
        return 0;
}

答案 1 :(得分:0)

#define P(X) printf("%d\n",X)

这仅适用于int tho。小心。