Click here to Skip to main content
15,891,184 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Seprating client area in MDI application. Pin
mostafa_pasha11-Sep-06 9:23
mostafa_pasha11-Sep-06 9:23 
GeneralRe: Seprating client area in MDI application. Pin
Jun Du12-Sep-06 2:33
Jun Du12-Sep-06 2:33 
QuestionProblem Overloading operator new in a template class Pin
JKallen11-Sep-06 7:50
JKallen11-Sep-06 7:50 
AnswerRe: Problem Overloading operator new in a template class Pin
Zac Howland11-Sep-06 8:33
Zac Howland11-Sep-06 8:33 
QuestionProblems reading from a text file Pin
KaKa'11-Sep-06 7:24
KaKa'11-Sep-06 7:24 
AnswerRe: Problems reading from a text file Pin
Zac Howland11-Sep-06 7:27
Zac Howland11-Sep-06 7:27 
QuestionReading from file -- readline problem: Pin
gunner_uk200011-Sep-06 6:32
gunner_uk200011-Sep-06 6:32 
AnswerRe: Reading from file -- readline problem: Pin
Zac Howland11-Sep-06 7:25
Zac Howland11-Sep-06 7:25 
Since you are reading in numbers that are delimited by whitespace, you can use the following code:

while (PrimeFile.eof() == false && PrimeNumbers.size() < size)
{
	int newPrimeNumber = 0;
	PrimeFile >> newPrimeNumber;
	PrimeNumbers.push_back(newPrimeNumber);
}


Alternatively, you can avoid writing your own loop altogether:

#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <iterator>

using namespace std;

int main()
{
        ifstream fin;
        vector<int> MyVector;

        fin.open("test.txt");
        copy(istream_iterator<int>(fin), istream_iterator<int>(), back_inserter(MyVector));
        fin.close();
        copy(MyVector.begin(), MyVector.end(), ostream_iterator<int>(cout, " "));
}



If you decide to become a software engineer, you are signing up to have a 1/2" piece of silicon tell you exactly how stupid you really are for 8 hours a day, 5 days a week

Zac

Questionreading from a text file Pin
FredrickNorge11-Sep-06 5:10
FredrickNorge11-Sep-06 5:10 
AnswerRe: reading from a text file Pin
Zac Howland11-Sep-06 5:22
Zac Howland11-Sep-06 5:22 
GeneralRe: reading from a text file Pin
FredrickNorge11-Sep-06 5:38
FredrickNorge11-Sep-06 5:38 
Questiondifference between TRUE and true Pin
Tara1411-Sep-06 5:03
Tara1411-Sep-06 5:03 
AnswerRe: difference between TRUE and true Pin
Sarath C11-Sep-06 5:15
Sarath C11-Sep-06 5:15 
AnswerRe: difference between TRUE and true Pin
Chris Losinger11-Sep-06 5:15
professionalChris Losinger11-Sep-06 5:15 
AnswerRe: difference between TRUE and true Pin
Zac Howland11-Sep-06 5:17
Zac Howland11-Sep-06 5:17 
AnswerRe: difference between TRUE and true Pin
toxcct11-Sep-06 5:19
toxcct11-Sep-06 5:19 
AnswerRe: difference between TRUE and true Pin
Michael Dunn11-Sep-06 7:34
sitebuilderMichael Dunn11-Sep-06 7:34 
GeneralRe: difference between TRUE and true Pin
Tara1411-Sep-06 8:44
Tara1411-Sep-06 8:44 
GeneralRe: difference between TRUE and true Pin
Nish Nishant11-Sep-06 8:51
sitebuilderNish Nishant11-Sep-06 8:51 
GeneralRe: difference between TRUE and true Pin
Michael Dunn11-Sep-06 8:51
sitebuilderMichael Dunn11-Sep-06 8:51 
GeneralRe: difference between TRUE and true Pin
Zac Howland11-Sep-06 9:08
Zac Howland11-Sep-06 9:08 
GeneralRe: difference between TRUE and true Pin
Tara1411-Sep-06 8:56
Tara1411-Sep-06 8:56 
QuestionCEdit: How do I track non visible edit changes? Pin
Dimitris Vikeloudas11-Sep-06 4:55
Dimitris Vikeloudas11-Sep-06 4:55 
AnswerRe: CEdit: How do I track non visible edit changes? Pin
KellyR11-Sep-06 8:43
KellyR11-Sep-06 8:43 
GeneralRe: CEdit: How do I track non visible edit changes? Pin
Dimitris Vikeloudas11-Sep-06 22:47
Dimitris Vikeloudas11-Sep-06 22:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.