Skip to content

Instantly share code, notes, and snippets.

@VehpuS
Last active October 22, 2018 19:51
Show Gist options
  • Save VehpuS/d9a2fa894a493a0c6347a9b08f03f208 to your computer and use it in GitHub Desktop.
Save VehpuS/d9a2fa894a493a0c6347a9b08f03f208 to your computer and use it in GitHub Desktop.
Macro concatenate created by VehpuS - https://repl.it/@VehpuS/Macro-concatenate
#include <stdio.h>
// https://gcc.gnu.org/onlinedocs/cpp/Concatenation.html
#define test(a) b ## a
int main(void) {
char* bc = "Hello World\n";
printf(test(c));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment