1 2 3 4 5 6 7 8 9 10
extern int b(); extern int c(); extern int d(); int main(void) { c(); b(); d(); }