int doublew(x) int x; { return x*2; } int triple( y) int y; { return y*3; } main() { int i = 2; printf("Got %d \n", doublew(i++)+ triple(i++)); }