C++ Intermediate Practice Test - Question 4

Last Updated :
Discuss
Comments

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();

Share your thoughts in the comments
Article Tags :