SyntaxFix
Write A Post
Hire A Developer
Questions
If they're both strings you can just do:
#define STR3 STR1 STR2
This then expands to:
#define STR3 "s" "1"
and in the C language, separating two strings with space as in "s" "1" is exactly equivalent to having a single string "s1".
"s" "1"
"s1"