1 int funca(void);
2 int funcb(void);
3 int funcc(void);
4 
main(void)5 int main(void) {
6     return funca() + funcb() + funcc();
7 }
8