1 #include <stdio.h> 2 #define A "hi_" 3 #define B "xpy" 4 #define C A B 5 int main() 6 { 7 printf("%s\n", C); 8 }
输出“hi_xpy”