how to pass multiple arguments in a single function in Objective-C? I want to pass 2 integer values and the return value is also integer. I want to use the new Objective-C synta
int add (int a, int b) { int c; c = a + b; return c; }
link text