error C3861: 'enterData': identifier not found, even with argument-dependent lookup
error C3861: 'printCheck': identifier not found, even with argument-dependent lookup
Why am I getting this error?
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
string todaysDate,firstName, lastName;
double amount;
enterData(&todaysDate, &firstName, &lastName, &amount);
printCheck(&todaysDate, &firstName, &lastName, &amount);
cout << "Enter today's date: ";
cin >> todaysDate;
cout << "Enter the first name: ";
cin >> firstName;
cout << "Enter the last name: ";
cin >> lastName;
cout << "Enter the amount: ";
cin >> amount;
cout << "Zzyz Corp Date: (today's date)"<<endl;
cout << "1164 Sunrise Avenue "<<endl;
cout << "Kalispell, Montana\n "<<endl;
cout << "Pay to the order of: (firstName lastName) $ (amount)\n "<<endl;
cout << firstName << " " << lastName;
cout << " $" << amount << endl;
cout << "UnderSecurity Bank "<<endl;
cout << "Missoula, MT "<<endl;
cout << " ____________________"<<endl;
cout << " Authorized Signature";
cout << endl << endl;
return 0;
}