What is the correct way to declare a function that takes two integers as parameters and returns their sum?
- int sum(int a, int b) { return a + b; }
- int sum(int a; int b) { return a + b; }
- sum(int a, int b) { return a + b; }
- void sum(int a, int b) { cout << a + b; }
Functions in C++ are declared by specifying their return type, followed by the function name and parameters enclosed in parentheses. The correct way to declare a function that takes two integers and returns their sum is by declaring the return type as int and specifying the parameters with commas in between. So, the correct declaration is int sum(int a, int b).
Loading...
Related Quiz
- A pointer passed by value to a function allows the function to change the _______ to which the pointer points.
- You are designing a graphics system that involves various shapes like Circle, Rectangle, and Triangle. How might you design the class structure considering reusability and organized hierarchy?
- The syntax to declare a pure virtual function is to follow the function declaration with _______.
- Robert notices that in a certain switch-case structure in his program, two different cases seem to execute sequentially without a break. What could be the reason behind this behavior?
- Can a friend function be a member function of another class?