[ create a new paste ] login | about

Link: http://codepad.org/lZ0QKzln    [ raw code | output | fork ]

appunti2 - C, pasted on Apr 30:
1
2
3
4
5
6
7
8
#include <stdio.h>
#define MIAMACRO 12345678
#define UNITO MI ## A ## MA ## CRO
int main (void)
{
  printf ("%i\n", UNITO);
  return 0;
}


Output:
1
12345678


Create a new paste based on this one


Comments: