[ create a new paste ] login | about

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

appunti2 - C, pasted on Apr 30:
1
2
3
4
5
6
7
#include <stdio.h>
#define SALUTO "Ciao! come stai?\n"
int main (void)
{
  printf (SALUTO);
  return 0;
}


Output:
1
Ciao! come stai?


Create a new paste based on this one


Comments: