0
C++ arrays
How can we read from and external file and save it in a fixed size array in C++?
2 Respostas
0
Include fstream to work with files.
make sure file is open
create an array
use a for loop
file >> array
0
thankyou
How can we read from and external file and save it in a fixed size array in C++?