Click here to Skip to main content
15,888,286 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: vc++code for designing a scientific calculator Pin
Hamid_RT9-Oct-07 9:54
Hamid_RT9-Oct-07 9:54 
GeneralRe: vc++code for designing a scientific calculator Pin
toxcct9-Oct-07 21:25
toxcct9-Oct-07 21:25 
GeneralRe: vc++code for designing a scientific calculator Pin
Hamid_RT10-Oct-07 7:06
Hamid_RT10-Oct-07 7:06 
QuestionTheory question about "void pBuffer" Pin
Nelek9-Oct-07 4:38
protectorNelek9-Oct-07 4:38 
AnswerRe: Theory question about "void pBuffer" Pin
led mike9-Oct-07 5:00
led mike9-Oct-07 5:00 
QuestionRe: Theory question about "void pBuffer" Pin
Nelek10-Oct-07 0:27
protectorNelek10-Oct-07 0:27 
AnswerRe: Theory question about "void pBuffer" Pin
led mike10-Oct-07 4:46
led mike10-Oct-07 4:46 
GeneralRe: Theory question about void pBuffer Pin
Nelek10-Oct-07 20:45
protectorNelek10-Oct-07 20:45 
Yes, what I write in quote.

It is supposed to give problems while overlapping, but the code that they put in the example (I paste some parts)

char string1[60] = "The quick brown dog jumps over the lazy fox";
char string2[60] = "The quick brown fox jumps over the lazy dog";
/*                           1         2         3         4         5
 *                  12345678901234567890123456789012345678901234567890
 */

//Other function

   printf( "Function:\tmemmove with overlap\n" );
   printf( "Source:\t\t%s\n", string2 + 4 );
   printf( "Destination:\t%s\n", string2 + 10 );
   memmove( string2 + 10, string2 + 4, 40 );
   printf( "Result:\t\t%s\n", string2 );
   printf( "Length:\t\t%d characters\n\n", strlen( string2 ) );

   printf( "Function:\tmemcpy with overlap\n" );
   printf( "Source:\t\t%s\n", string1 + 4 );
   printf( "Destination:\t%s\n", string1 + 10 );
   memcpy( string1 + 10, string1 + 4, 40 );
   printf( "Result:\t\t%s\n", string1 );
   printf( "Length:\t\t%d characters\n\n", strlen( string1 ) );


gives the results that I worte in the message above, and both are making exactly the same and working good. So I don't understand where the problem is. If I could see an example where the quote is true, then I would understand it better.







Greetings.

--------
M.D.V.

If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?

Help me to understand what I'm saying, and I'll explain it better to you

Wink | ;)

GeneralRe: Theory question about void pBuffer Pin
led mike11-Oct-07 4:59
led mike11-Oct-07 4:59 
GeneralRe: Theory question about void pBuffer Pin
Nelek12-Oct-07 1:59
protectorNelek12-Oct-07 1:59 
AnswerRe: Theory question about "void pBuffer" Pin
Bram van Kampen9-Oct-07 15:31
Bram van Kampen9-Oct-07 15:31 
GeneralRe: Theory question about "void pBuffer" Pin
Nelek9-Oct-07 22:14
protectorNelek9-Oct-07 22:14 
QuestionMCI -> set video position at a specific time Pin
sdancer759-Oct-07 4:36
sdancer759-Oct-07 4:36 
AnswerRe: MCI -> set video position at a specific time Pin
Hamid_RT9-Oct-07 9:46
Hamid_RT9-Oct-07 9:46 
QuestionRe: MCI -> set video position at a specific time Pin
sdancer7510-Oct-07 0:39
sdancer7510-Oct-07 0:39 
AnswerRe: MCI -> set video position at a specific time Pin
Hamid_RT10-Oct-07 7:09
Hamid_RT10-Oct-07 7:09 
GeneralRe: MCI -> set video position at a specific time Pin
sdancer7510-Oct-07 20:00
sdancer7510-Oct-07 20:00 
GeneralRe: MCI -> set video position at a specific time Pin
Hamid_RT10-Oct-07 21:32
Hamid_RT10-Oct-07 21:32 
QuestionMultiline textout Pin
vSteve9-Oct-07 3:44
vSteve9-Oct-07 3:44 
AnswerRe: Multiline textout Pin
Chris Losinger9-Oct-07 3:51
professionalChris Losinger9-Oct-07 3:51 
GeneralRe: Multiline textout Pin
vSteve9-Oct-07 4:20
vSteve9-Oct-07 4:20 
GeneralRe: Multiline textout Pin
led mike9-Oct-07 5:02
led mike9-Oct-07 5:02 
QuestionBuffer Overrun Pin
LCI9-Oct-07 2:33
LCI9-Oct-07 2:33 
AnswerRe: Buffer Overrun Pin
David Crow9-Oct-07 2:51
David Crow9-Oct-07 2:51 
AnswerRe: Buffer Overrun Pin
Stephen Hewitt9-Oct-07 12:29
Stephen Hewitt9-Oct-07 12:29 

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.