i have an assignment that is supposed to take points from a txt file and plot them out i have this code so far but keep getting errors can anyone help me.
#include "ccc_win.h"
#include <fstream>
int ccc_win_main()
{
ifstream myfile ("hshape.txt"); //open my filestream
while (! myfile.eof())
{
//Asking for name of file
cout << "Enter the file name: ";
cin.getline(myfile,Point,'\n');
myfile >> value >> Point;
cout <<Point<<endl;
}