Need help with one error in my code
I have this one last error in my code. Could someone please help me? Here is my code:
//Implementation file for CarFacts application
#include <iostream.h>
#include "vehicle.h" // [The error highlights this line but I switched the qoutes to "<>" and it still doesn't work]
int main()
{
char firstName[20], lastName[20];
cout << "Please input your first and last name.\n";
cin >> firstName >> lastName;
cout << firstName << " , welcome to the RJ CarFacts database.\n\n";
cout << "The database will allow you to acquire vehicle info based on specs you define.\n";
}
very much appreciate your help (solution), however, still got same error.
I tried as you suggested but to no avail, I still got the same error. I do really appreciate all the help, though. Is there any other possible solutions for this error?
Again, appreciate any feedback you have.
I'll have to do that in a new thread
When replying is says I cannot upload attachment so I will use a new thread to do this.