用于字符串连接的 C/C++ 宏
在本程序中,我们将看到如何使用宏连接两个字符串。我们可以在宏中创建两个或两个以上的字符串,然后将它们一个接一个地写入,以将它们转换为连接字符串。语法如下所示
#define STR1 "str1" #define STR2 " str2" #define STR3 STR1 STR2 //it will concatenate str1 and str2
输入:输入两个字符串
输出:返回连接后的字符串。
算法
Step 1:Take two strings Step 2: Use macro to concatenate the strings Step 3: End
示例代码
#include<stdio.h> #define STR1 "Hello" #define STR2 "World" #define STR3 STR1 STR2 main() { printf("%s", STR3); }
输出
HelloWorld
广告