Er. Maybe I'm misunderstanding your question, but i
and b
in that snippet are parameters to the function. It's not some compact way of declaring variables within the function, like:
int someFunction() {
int i, b;
When you call someFunction
, you pass it those arguments:
someFunction(1, 2); // `i` will be `1` and `b` `2` within `someFunction`