Click here to Skip to main content
15,896,111 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Database problem Pin
David Crow17-Aug-06 9:10
David Crow17-Aug-06 9:10 
QuestionHelp me to create a DC function: FillRgn() for Win98 Pin
includeh1015-Aug-06 6:45
includeh1015-Aug-06 6:45 
AnswerRe: Help me to create a DC function: FillRgn() for Win98 Pin
Chris Losinger15-Aug-06 9:58
professionalChris Losinger15-Aug-06 9:58 
QuestionC++ General Question Pin
NitinPatil15-Aug-06 5:56
NitinPatil15-Aug-06 5:56 
AnswerRe: C++ General Question Pin
Steve S15-Aug-06 6:11
Steve S15-Aug-06 6:11 
AnswerRe: C++ General Question Pin
led mike15-Aug-06 7:25
led mike15-Aug-06 7:25 
AnswerRe: C++ General Question Pin
Zac Howland15-Aug-06 9:30
Zac Howland15-Aug-06 9:30 
AnswerRe: C++ General Question Pin
Rilhas15-Aug-06 12:21
Rilhas15-Aug-06 12:21 
To put it simply, the loop will end when the expression "(*d++=*s++)" becomes zero. It will be zero when *d++ becomes zero. The *d++ will become zero when a zero is written to its address (which means that a zero will be copied from the *s++ source).

This code copies data from the address pointed to by "s" into the address pointed to by "d". After using both addresses "s" an "d" they will be incremented, thus pointing to the next element to copy.
The loop will stop after copying a null byte. So, most probably, it is an algorithm to copy null-terminated strings.


Questionhow i can send text to external program Pin
shortwave15-Aug-06 5:07
shortwave15-Aug-06 5:07 
QuestionRe: how i can send text to external program Pin
David Crow15-Aug-06 5:15
David Crow15-Aug-06 5:15 
AnswerRe: how i can send text to external program Pin
ms.linuz15-Aug-06 17:27
ms.linuz15-Aug-06 17:27 
AnswerRe: how i can send text to external program Pin
ensger16-Aug-06 2:45
ensger16-Aug-06 2:45 
GeneralRe: how i can send text to external program Pin
Hamid_RT16-Aug-06 5:07
Hamid_RT16-Aug-06 5:07 
QuestionRe: how i can send text to external program Pin
Hamid_RT16-Aug-06 5:07
Hamid_RT16-Aug-06 5:07 
AnswerRe: how i can send text to external program Pin
shortwave19-Aug-06 3:08
shortwave19-Aug-06 3:08 
QuestionHas a DLL been renamed? Pin
D G McKay15-Aug-06 4:50
D G McKay15-Aug-06 4:50 
QuestionDestroying window with popup menu Pin
Johniteq15-Aug-06 4:27
Johniteq15-Aug-06 4:27 
AnswerRe: Destroying window with popup menu Pin
Maximilien15-Aug-06 4:59
Maximilien15-Aug-06 4:59 
GeneralRe: Destroying window with popup menu Pin
Johniteq16-Aug-06 1:37
Johniteq16-Aug-06 1:37 
AnswerRe: Destroying window with popup menu Pin
Michael Dunn15-Aug-06 13:12
sitebuilderMichael Dunn15-Aug-06 13:12 
GeneralRe: Destroying window with popup menu Pin
Johniteq16-Aug-06 1:42
Johniteq16-Aug-06 1:42 
QuestionStill need help with FTPConnection Pin
racing5715-Aug-06 4:20
racing5715-Aug-06 4:20 
AnswerRe: Still need help with FTPConnection Pin
includeh1015-Aug-06 6:49
includeh1015-Aug-06 6:49 
GeneralRe: Still need help with FTPConnection Pin
racing5715-Aug-06 10:50
racing5715-Aug-06 10:50 
GeneralRe: Still need help with FTPConnection Pin
thangnvhl15-Aug-06 21:53
thangnvhl15-Aug-06 21:53 

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.