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

C / C++ / MFC

 
AnswerRe: If I may be so bold , newbie help Pin
Hamid_RT13-Oct-06 8:00
Hamid_RT13-Oct-06 8:00 
GeneralRe: If I may be so bold , newbie help [modified] Pin
hotari19-Oct-06 19:40
hotari19-Oct-06 19:40 
QuestionTCP Socket and packet sending problem Pin
nahitan12-Oct-06 8:42
nahitan12-Oct-06 8:42 
AnswerRe: TCP Socket and packet sending problem Pin
Mark Salsbery12-Oct-06 9:58
Mark Salsbery12-Oct-06 9:58 
GeneralRe: TCP Socket and packet sending problem Pin
nahitan12-Oct-06 10:47
nahitan12-Oct-06 10:47 
GeneralRe: TCP Socket and packet sending problem Pin
Mark Salsbery12-Oct-06 10:59
Mark Salsbery12-Oct-06 10:59 
GeneralRe: TCP Socket and packet sending problem Pin
Moak1-Nov-06 4:16
Moak1-Nov-06 4:16 
Questionconfusing about complex linked data structures, using pointer Pin
EzraYap12-Oct-06 6:21
EzraYap12-Oct-06 6:21 
anyone can help me to explain this process step- by- step?
struct list_ele *<br />
sortfun( struct list_ele *list )<br />
{<br />
<br />
      int exchange;<br />
      struct list_ele *nextp, *thisp, dummy;<br />
<br />
      dummy.pointer = list;<br />
      do{<br />
              exchange = 0;<br />
              thisp = &dummy;<br />
              while( (nextp = thisp->pointer)<br />
                      && nextp->pointer){<br />
                      if(nextp->data < nextp->pointer->data){<br />
                              /* exchange */<br />
                              exchange = 1;<br />
                              thisp->pointer = nextp->pointer;<br />
                              nextp->pointer =<br />
                                      thisp->pointer->pointer;<br />
                              thisp->pointer->pointer = nextp;<br />
                      }<br />
                      thisp = thisp->pointer;<br />
              }<br />
      }while(exchange);<br />
<br />
      return(dummy.pointer);<br />
}<br />

Confused | :confused:

~~~@@@###EZRA###@@@~~~

AnswerRe: confusing about complex linked data structures, using pointer Pin
David Crow12-Oct-06 6:45
David Crow12-Oct-06 6:45 
AnswerRe: confusing about complex linked data structures, using pointer Pin
Zac Howland12-Oct-06 7:25
Zac Howland12-Oct-06 7:25 
Questionprograming Pin
Dure-Shehwar12-Oct-06 5:56
Dure-Shehwar12-Oct-06 5:56 
AnswerRe: programing Pin
Zac Howland12-Oct-06 6:11
Zac Howland12-Oct-06 6:11 
AnswerRe: programing Pin
Makakuin12-Oct-06 7:32
Makakuin12-Oct-06 7:32 
GeneralRe: programing Pin
Makakuin12-Oct-06 7:47
Makakuin12-Oct-06 7:47 
AnswerRe: programing Pin
Christian Graus12-Oct-06 8:19
protectorChristian Graus12-Oct-06 8:19 
AnswerRe: programing Pin
Rudolf Jan13-Oct-06 0:14
Rudolf Jan13-Oct-06 0:14 
Questionprogramming Pin
Dure-Shehwar12-Oct-06 5:46
Dure-Shehwar12-Oct-06 5:46 
AnswerRe: programming Pin
David Crow12-Oct-06 5:51
David Crow12-Oct-06 5:51 
GeneralRe: programming Pin
Hamid_RT12-Oct-06 6:37
Hamid_RT12-Oct-06 6:37 
AnswerRe: programming Pin
Hamid_RT12-Oct-06 6:39
Hamid_RT12-Oct-06 6:39 
GeneralRe: programming Pin
led mike12-Oct-06 8:12
led mike12-Oct-06 8:12 
GeneralRe: programming Pin
Hamid_RT12-Oct-06 19:48
Hamid_RT12-Oct-06 19:48 
AnswerRe: programming Pin
Mark Salsbery12-Oct-06 10:02
Mark Salsbery12-Oct-06 10:02 
GeneralRe: programming Pin
Christian Graus12-Oct-06 10:11
protectorChristian Graus12-Oct-06 10:11 
GeneralRe: programming Pin
Mark Salsbery12-Oct-06 10:26
Mark Salsbery12-Oct-06 10:26 

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.