[ create a new paste ] login | about

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

appunti2 - C, pasted on Apr 30:
1
2
3
4
5
6
7
#include <stdio.h>
#define UNISCI(A, B) A ## B
int main (void)
{
  printf ("%i\n", UNISCI(1234, 5678));
  return 0;
}


Output:
1
12345678


Create a new paste based on this one


Comments: