Er. Perhaps I do not understand your question, but iand bin this passage are the parameters of the function. This is not some compact way to declare variables inside a function, for example:
int someFunction() {
int i, b;
When you call someFunction, you pass it these arguments:
someFunction(1, 2); // `i` will be `1` and `b` `2` within `someFunction`
source
share