1 2 3 4 5 6 7 8 9 10 11 12 13
int sum(int a, int b, int c) { return a+b+c; } void main(void) { int s; s = sum(1, 2, 3); }