15 lines
202 B
Text
15 lines
202 B
Text
|
void test (int a, int b, int c, int d) {
|
||
|
puti(a);
|
||
|
puts(" - ");
|
||
|
puti(b);
|
||
|
puts(" - ");
|
||
|
puti(c);
|
||
|
puts(" - ");
|
||
|
puti(d);
|
||
|
puts("\n");
|
||
|
}
|
||
|
|
||
|
void main () {
|
||
|
test(1, 2, 3, 4);
|
||
|
}
|