if (1 != sscanf(line, "%s", name)) continue;

Earlier in the code we have

char line[128];

char name[128];

What's another way of writing this line using istringstream instead of sscanf?

link|improve this question

0% accept rate
2  
Agreed. Not gonna post an answer on this.. – DeadMG Oct 29 '11 at 0:33
Give him a break. He has only been here 28 days. I often don't accept answers until at least a month has passed. – Loki Astari Oct 29 '11 at 0:45
feedback

1 Answer

std::istringstream stream( line );
if( !( stream >> name ) )
    continue;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.