Hey all... I was wondering what's the proper syntax for passing structure ints/chars, whatevers to a function... here's my function:

void hi_val (int, int);

It takes arguments, but no return type. I want to pass two ints to it... one is an int from function main and another is from a structure (struct employee[100].salary) ... do I even need the [100]? I can't seem to figure this out. TIA.