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