C++ program
This is a C++ program, to be done in a .cpp file
Problem statement: The program below contains 5 errors before it will run correctly. I have tried to solve it but I am stuck. If you could please debug it and comment out what you did to fix it I would greatly appreciate it.
Program:
#include "stdafx.h"
#include <cstdlib>
#include <iostream>
using namespace std;
int add(int, int);
double add(double, double);
int main()
{
int a, b, x;
float c, d, y;
cout << "Enter two integers\n";
cin >> a >> b;
x = add(a, c);
cout << "Sum of integers: " << x << endl;
cout << "Enter two doubles\n";
cin >> c >> d;
y = add(a, b);
cout << "Sum of doubles: " << y << endl;
return 0;
}
int add(int a, int b)
{
int sum;
sum = a + b;
}
double add(double a, double b)
{
double sum;
sum = a + b;
return sum
}
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images