I am getting this error when debugging can anyone tell me what I am doing wrong....keep in mind I am not finished with the program
1>Project 3.obj : error LNK2019: unresolved external symbol "int __cdecl Get_Number(int)" (?Get_Number@@YAHH@Z) referenced in function _main
#include <iostream>
using namespace std;
double Get_Character();
int Get_Number();
void Draw_Rectangle();
void Draw_Top_Bottom();
void Draw_Middle();
int main()
{
cout << "Programmed by Jim Johnson";
cout << endl << endl;
cout << "Type a negative for the height to exit!";
int height, width;
char x;
height = Get_Number();
width = Get_Number();
int Get_Number (int x);
cin >> height;
cin >> x;
while (x == 1)
{
height = Get_Number(1);
}
width = Get_Number(2);
return 0;
}
int Get_Number()
{
int height;
int width;
cout << "\nEnter the height: ";
cin >> height;
cout << endl << "Enter the width: ";
cin >> width;
return (height);
}