I'm trying to define a macro which is suppose to take 2 string values and return them concatenated with a one space between them. It seems I can use any character I want besides space, for example:
#define conc(str1,str2) #str1 ## #str2
#define space_conc(str1,str2) conc(str1,-) ## #str2
space_conc(idan,oop);
space_conc
would return "idan-oop"
I want something to return "idan oop", suggestions?
Try this
The '##' is used to concatenate symbols, not strings. Strings can simply be juxtaposed in C, and the compiler will concatenate them, which is what this macro does. First turns str1 and str2 into strings (let's say "hello" and "world" if you use it like this
space_conc(hello, world)
) and places them next to each other with the simple, single-space, string inbetween. That is, the resulting expansion would be interpreted by the compiler like thiswhich it'll concatenate to
HTH
Edit
For completeness, the '##' operator in macro expansion is used like this, let's say you have
will result in the following if called as
dumb_macro(hello, world)
which is not a string, but a symbol and you'll probably end up with an undefined symbol error saying 'helloworld' doesn't exist unless you define it first. This would be legal:
The right was to do it is to place the 2 strings one next to the other. '##' won't work. Just: