There is a function:
void fnc (T arg[]) {
// inside the function there is something like this:
// A = B + arg[index] * C;
}
In some situations, there is nothing to pass so, arg[] should be zero. So, is there a way to call function as this way: void fnc(0);?
T * argwould be clearer in this case.