I want to devide the text in file data.txt into an array of char*( mean i use the pointer char** q) by the way line 1 for q[1], line 2 for q[2] and.... but i don't know why it not work can everyone help me ??? :(
char **q;
const int SIZE = 10000;
char input[SIZE];
fstream nameFile;
int n=0;
nameFile.open("data.txt", ios::in);
if (!nameFile)
{
cout << "ERROR: Cannot open file.\n";
}
nameFile.getline(input, SIZE); //Dùng kí tự mặc định \n như kí tự kết thúc.
while (!nameFile.eof())
{
n++;
nameFile.getline(input, SIZE); //Chỗ này cũng vậy.
}
q=new char*[n]; //cấp phát động cho mảng q;
for(int i=0;i<n;i++)
{
q[i]= new char[SIZE];
}
int i =0;
nameFile.clear();
nameFile.seekg(0,nameFile.beg);
while (!nameFile.eof()) //ghi vào từng hàng tương ứng với từ mảng kí tự q1,q2,..
{
nameFile.getline(q[i++], SIZE);
}
for(int i=0;i<n;i++)
{
gets(q[i]);
}
nameFile.close();