Skip to content

Instantly share code, notes, and snippets.

@C47D
Created December 11, 2017 20:22
Show Gist options
  • Save C47D/2607764b4be377fb8375aa76a57ea065 to your computer and use it in GitHub Desktop.
Save C47D/2607764b4be377fb8375aa76a57ea065 to your computer and use it in GitHub Desktop.
test for generating strings
#include <stdio.h>
#include <stdlib.h>
#define NAME(x) "Hola " #x
#define MSG(x) NAME(x)
int main(void)
{
printf("%s\r\n", MSG(World));
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment