Hey guys I stuck working on an assignment in which I asked to write a program that lists the contents of a file.
#include<iostream>
#include<fstream>
using namespace std;
int main() {
string array[5];
ifstream infile("file_names.txt");
int x=0;
while(infile>>array[x++]){
    for(int i=0;i<=x;i++){
    infile >> array[i];
    cout << array[i] << endl;}}
    }
basically I have a file named "file_names.txt" that contains three strings and I want my program to list them.
 
     
    