prog.cpp: In function 'int main()':
prog.cpp:16:26: error: too few arguments to function 'int GetUserNum(int, int)'
userNum1 = GetUserNum();
^
prog.cpp:5:5: note: declared here
int GetUserNum (int userNum1, int userNum2) {
^
prog.cpp:17:26: error: too few arguments to function 'int GetUserNum(int, int)'
userNum2 = GetUserNum();
^
prog.cpp:5:5: note: declared here
int GetUserNum (int userNum1, int userNum2) {
^
prog.cpp:19:45: error: 'ComputeAvg' was not declared in this scope
avgResult = ComputeAvg(userNum1, userNum2);
^