Click here to Skip to main content
15,912,204 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Console Application Pin
parichaybp14-Apr-06 2:31
parichaybp14-Apr-06 2:31 
GeneralRe: Console Application Pin
Cedric Moonen14-Apr-06 2:35
Cedric Moonen14-Apr-06 2:35 
QuestionRe: Console Application Pin
David Crow14-Apr-06 2:41
David Crow14-Apr-06 2:41 
AnswerRe: Console Application Pin
parichaybp14-Apr-06 2:43
parichaybp14-Apr-06 2:43 
GeneralRe: Console Application Pin
David Crow14-Apr-06 2:46
David Crow14-Apr-06 2:46 
QuestionRe: Console Application Pin
David Crow14-Apr-06 3:00
David Crow14-Apr-06 3:00 
GeneralRe: Console Application Pin
David Crow14-Apr-06 3:04
David Crow14-Apr-06 3:04 
GeneralRe: Console Application Pin
David Crow14-Apr-06 3:07
David Crow14-Apr-06 3:07 
parichaybp wrote:
if (strcmp (file_s.name, ".") == 0 || strcmp (file_s.name, "..") == 0)


This can be shortened to just a single comparison:

if (file_s.name[0] == '.')
This does nothing for your problem, but it does help to remove unnecessary code.


"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain

"There is no death, only a change of worlds." - Native American Proverb


QuestionRe: Console Application Pin
David Crow14-Apr-06 3:10
David Crow14-Apr-06 3:10 
AnswerRe: Console Application Pin
Cedric Moonen14-Apr-06 2:02
Cedric Moonen14-Apr-06 2:02 
GeneralRe: Console Application Pin
Aqueel14-Apr-06 2:07
Aqueel14-Apr-06 2:07 
AnswerRe: Console Application Pin
Maxwell Chen14-Apr-06 3:12
Maxwell Chen14-Apr-06 3:12 
GeneralRe: Console Application Pin
parichaybp16-Apr-06 19:28
parichaybp16-Apr-06 19:28 
Questiondiff between Send message and Post message Pin
Krishnatv14-Apr-06 0:59
Krishnatv14-Apr-06 0:59 
AnswerRe: diff between Send message and Post message Pin
HakunaMatada14-Apr-06 1:33
HakunaMatada14-Apr-06 1:33 
AnswerRe: diff between Send message and Post message Pin
Amar Sutar14-Apr-06 2:55
Amar Sutar14-Apr-06 2:55 
AnswerRe: diff between Send message and Post message Pin
Russell'14-Apr-06 3:26
Russell'14-Apr-06 3:26 
QuestionTree View Right Click Problem. Pin
harshandu14-Apr-06 0:57
harshandu14-Apr-06 0:57 
AnswerRe: Tree View Right Click Problem. Pin
Amar Sutar14-Apr-06 2:48
Amar Sutar14-Apr-06 2:48 
Questionhow to read .PST file using VC++ Pin
K. narasimharao14-Apr-06 0:40
K. narasimharao14-Apr-06 0:40 
AnswerRe: how to read .PST file using VC++ Pin
HakunaMatada14-Apr-06 1:35
HakunaMatada14-Apr-06 1:35 
Questionplease read: its importent Pin
baldha rakesh14-Apr-06 0:30
baldha rakesh14-Apr-06 0:30 
AnswerRe: please read: its importent Pin
David Crow14-Apr-06 2:54
David Crow14-Apr-06 2:54 
GeneralRe: please read: its importent Pin
Gary R. Wheeler14-Apr-06 3:15
Gary R. Wheeler14-Apr-06 3:15 
GeneralRe: please read: its importent Pin
David Crow14-Apr-06 3:34
David Crow14-Apr-06 3:34 

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.