---- See the following code: #include using namespace std; void myfunction( int a, int b ) { int mysum = a + b; } int main () { int a = 2; int b = 3; cout << "The sum of " << a << " and " << b << " is: " << myfunction( 2, 3 ); return 0; } What will be output by the above program? * a - The sum of 2 and 3 is: 5 * b - The sum of 2 and 3 is: * c - The sum of 2 and 3 is: myfunction( 2, 3 ) * d - Nothing * a * b * c * d