How to declare a function in C++ that returns an integer and takes two integer parameters?
int function(int, int);
int function(a, b);
int function(int a, int b);
int function();
This question is part of this quiz :
C++ Intermediate Skill Assessment Practice Test