Hi there, hopefully my this simple program will help you out........Actually it is almost as same as your's but i did lots of changes. The word in magenta , i think is ofstream instead of ifstream. :mrgreen:
#include
#include
#include
#include
using namespace std;
void readStoreCount();
void printNumbers();
int main ()
{
readStoreCount();
printNumbers();
return 0;
} //main
void readStoreCount()
{
int i = 0;
float numbers[100];
ofstream source;
source.open ("source.txt");
if (!source)
{
cerr << "\aError 100 opening source.txt" << endl;
exit (1); // Exit Program If The File Cannot Be Opened //
}
for (i = 0; i < 100; i++)
{
numbers[i]=i;
source<>Num;
numbersIn[i]=Num;
i++;
}
source.close();
cout<<"The Numbers Taken From The File Are :- "<=0; j--) // Display The Numbers in The Array From Largest
{ //numbersIn[100] To numbersIn[0] //
cout<