11 lines
85 B
C
Raw Normal View History

extern int b();
extern int c();
extern int d();
int main()
{
2016-07-09 11:21:54 +02:00
c();
b();
d();
}