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";
}



LinkBack URL
About LinkBacks


