fmacro # and ##

This commit is contained in:
pommicket 2022-01-09 17:37:23 -05:00
parent 2bb803e673
commit 2214ea4017
2 changed files with 51 additions and 17 deletions

View file

@ -1,4 +1,4 @@
#define TEST(x,y,z) x hello y there z
TEST((55,(33,3)),22,(3,49))
#define TEST(x,y,z) x##y#z
TEST(22,4594,hello there folks)
main(void) {
}