Click here to Skip to main content
15,915,324 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Vectors vs Arrays Pin
Kevin McFarlane13-Oct-04 6:36
Kevin McFarlane13-Oct-04 6:36 
GeneralRe: Vectors vs Arrays Pin
Maximilien13-Oct-04 0:56
Maximilien13-Oct-04 0:56 
GeneralRe: Vectors vs Arrays Pin
mcsherry13-Oct-04 2:40
mcsherry13-Oct-04 2:40 
GeneralRe: Vectors vs Arrays Pin
Kevin McFarlane13-Oct-04 6:37
Kevin McFarlane13-Oct-04 6:37 
QuestionCString += CString :: doesn't do the trick? Pin
V.12-Oct-04 22:39
professionalV.12-Oct-04 22:39 
AnswerRe: CString += CString :: doesn't do the trick? Pin
RChin12-Oct-04 23:21
RChin12-Oct-04 23:21 
GeneralRe: CString += CString :: doesn't do the trick? Pin
V.12-Oct-04 23:32
professionalV.12-Oct-04 23:32 
AnswerRe: CString += CString :: doesn't do the trick? Pin
David Crow13-Oct-04 3:39
David Crow13-Oct-04 3:39 
V. wrote:
fscanf(readfile, "%s", line);
...
while(line.Find("\n") < 0);


If line is a CString object, it cannot be used as the third parameter to fscanf().

Assuming you are wanting to read lines from the file, there are at least two methods that make more sense. The first is to use "%[^\n]" instead of "%s". This will read everything up to the '\n' character. The second is to create a CStdioFile object and use its ReadString() method.


"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen


GeneralRe: CString += CString :: doesn't do the trick? Pin
V.13-Oct-04 4:39
professionalV.13-Oct-04 4:39 
AnswerRe: CString += CString :: doesn't do the trick? Pin
Phil J Pearson14-Oct-04 5:15
Phil J Pearson14-Oct-04 5:15 
Generalthread safe lazy singleton intialization Pin
peterchen12-Oct-04 22:09
peterchen12-Oct-04 22:09 
GeneralRe: thread safe lazy singleton intialization Pin
Joaquín M López Muñoz13-Oct-04 0:19
Joaquín M López Muñoz13-Oct-04 0:19 
GeneralRe: thread safe lazy singleton intialization Pin
peterchen13-Oct-04 1:52
peterchen13-Oct-04 1:52 
GeneralRe: thread safe lazy singleton intialization Pin
Neville Franks13-Oct-04 0:30
Neville Franks13-Oct-04 0:30 
GeneralRe: thread safe lazy singleton intialization Pin
peterchen13-Oct-04 2:18
peterchen13-Oct-04 2:18 
GeneralRe: thread safe lazy singleton intialization Pin
Joaquín M López Muñoz13-Oct-04 3:26
Joaquín M López Muñoz13-Oct-04 3:26 
GeneralRe: thread safe lazy singleton intialization Pin
Neville Franks13-Oct-04 9:31
Neville Franks13-Oct-04 9:31 
GeneralRe: thread safe lazy singleton intialization Pin
Joaquín M López Muñoz13-Oct-04 10:01
Joaquín M López Muñoz13-Oct-04 10:01 
GeneralRe: thread safe lazy singleton intialization Pin
Neville Franks13-Oct-04 10:29
Neville Franks13-Oct-04 10:29 
GeneralRe: thread safe lazy singleton intialization Pin
peterchen13-Oct-04 9:51
peterchen13-Oct-04 9:51 
GeneralRe: thread safe lazy singleton intialization Pin
Neville Franks13-Oct-04 10:54
Neville Franks13-Oct-04 10:54 
GeneralRe: thread safe lazy singleton intialization Pin
peterchen13-Oct-04 2:24
peterchen13-Oct-04 2:24 
General2 questions about working with files Pin
Ernesto D.12-Oct-04 21:51
Ernesto D.12-Oct-04 21:51 
GeneralRe: 2 questions about working with files Pin
Graham Bradshaw12-Oct-04 22:18
Graham Bradshaw12-Oct-04 22:18 
GeneralRe: 2 questions about working with files Pin
Ernesto D.13-Oct-04 7:05
Ernesto D.13-Oct-04 7:05 

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.