It depends a bit on how you wrote the values.
Obviously you need to open the file.
If you wote the data with outfile << data, you will probably read it with infile >> data.
If you used fprintf(), you will probably read it with fscanf(), though not necessarily.
To start off, how about you show us what you did to write the outfile, and mave a quick try at how you might read it and show us that. Then we can give you some guidence on how to proceed.
Good Luck!
Update
You seem fairly lost. I've written a short program that does some of the things you need, but I haven't included any comments so you need to read the code. Have a look and see if you can figure out what you need.
#include <iostream>
#include <fstream>
#include <string>
bool WriteNums(const std::string &sFileName, int nVal, double dVal)
{
std::ofstream ofstr(sFileName);
if (!ofstr.is_open())
{
std::cerr << "Open output file failed\n";
return false;
}
ofstr << nVal << " " << dVal;
if (ofstr.fail())
{
std::cerr << "Write to file failed\n";
return false;
}
return true;
}
bool ReadNums(const std::string &sFileName, int &nVal, double &dVal)
{
std::ifstream ifstr(sFileName);
if (!ifstr.is_open())
{
std::cerr << "Open input file failed\n";
return false;
}
ifstr >> nVal >> dVal;
if (ifstr.fail())
{
std::cerr << "Read from file failed\n";
return false;
}
return true;
}
int main()
{
const std::string sFileName("MyStyff.txt");
if(WriteNums(sFileName, 42, 1.23456))
{
int nVal(0);
double dVal(0.0);
if (ReadNums(sFileName, nVal, dVal))
{
std::cout << "I read back " << nVal << " and " << dVal << "\n";
}
}
return 0;
}