Chapter 6: Problem 7
Find the error in each of the following program segments, and explain how the error can be corrected (see also Exercise 6.53 ): a. int g( void ) { cout << "Inside function g" << endl; int h( void ) { cout << "Inside function h" << endl; } } b. int sum( int x, int y ) { int result; result = x + y; } c. int sum( int n ) { if ( n == 0 ) return 0; else n + sum( n - 1 ); } d. void f ( double a); { float a; cout << a << endl; } e. void product( void ) { int a; int b; int c; int result; cout << "Enter three integers: "; cin >> a >> b >> c; result = a * b * c; cout << "Result is " << result; return result; }
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.