[ create a new paste ] login | about

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

appunti2 - C, pasted on Apr 30:
1
2
3
4
5
6
7
8
#include <stdio.h>
#define STRINGATO(a, b) # a , b
#define SALUTO STRINGATO (%i un amore\n, 6)
int main (void)
{
  printf (SALUTO);
  return 0;
}


Output:
1
6 un amore


Create a new paste based on this one


Comments: