Hi,
I assigned the name of the file to string vector.
I mean when I print the vector, it seems like
cout<< files[0];
It prints file.txt
and I want to open the file by using vector.
I tried ifstream file ("files[0]"); and ifstream file (files[0]);
but they did not work. Please help me out !