Calling function
void main()
//First part of main() goes here
//
getThem(v1, v2); //Pass 2 values
//Rest of return; ł
Pass 2 arguments
getThem(int v1, int v2)
{
/
//Body of getThem()
//goes here. getThem()
//can work with v1 and //v2 as if those variables //were local to this function return;