I don't know what I am doing wrong!
I have defined the header files: Project->Build Options->Search directories->Compiler->Added the path that my header file is located in...
I am using codeblocks.
I don't know what is wrong!
#include <iostream>
#include "Sales_item.h"
using namespace std;
int main()
{
Sales_item book; // Reads ISBN, number of copies sold and sales price
cin >> book; // Write ISBN, number of copies sold, total revenue, and avg. price
cout << book << endl;
return 0;
}