blob: 2c1002ed8a1094796873071cb4c2631b5a6adca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <stdio.h>
int foo();
int bar();
int foobar();
int barbar();
int baz();
int main()
{
printf("foo: %d bar: %d foobar: %d barbar: %d baz: %d\n", foo(), bar(), foobar(), barbar(), baz());
return 0;
}
|