[ create a new paste ] login | about

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

appunti2 - C, pasted on Apr 30:
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

void elabora (char *z)
{
  printf (z);
}

int main (void)
{
  elabora ("ciao\n");
  return 0;
}


Output:
1
ciao


Create a new paste based on this one


Comments: