/* PROTO.C */ #include void tulosta(i) int i; { printf("Luku on %d\n",i); } int main(void) { tulosta(3); return 0; }