Was ist a##b
& #a
?
#define f(a,b) a##b
#define g(a) #a
#define h(a) g(a)
main()
{
printf("%s\n",h(f(1,2))); //how should I interpret this?? [line 1]
printf("%s\n",g(f(1,2))); //and this? [line 2]
}
Wie funktioniert dieses Programm?
Die Ausgabe lautet
12
f(1, 2)
jetzt verstehe ich, wie a##b
& #a
Arbeit. Aber warum ist das Ergebnis in den beiden Fällen (Zeile 1 und Zeile 2) unterschiedlich?