Click here to Skip to main content
15,890,506 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Complex code in conditionals Pin
CPallini4-Aug-15 0:20
mveCPallini4-Aug-15 0:20 
AnswerRe: Complex code in conditionals Pin
charlieg4-Aug-15 1:37
charlieg4-Aug-15 1:37 
AnswerRe: Complex code in conditionals Pin
Richard MacCutchan4-Aug-15 0:26
mveRichard MacCutchan4-Aug-15 0:26 
GeneralRe: Complex code in conditionals Pin
charlieg4-Aug-15 1:41
charlieg4-Aug-15 1:41 
GeneralRe: Complex code in conditionals Pin
Richard MacCutchan4-Aug-15 2:44
mveRichard MacCutchan4-Aug-15 2:44 
GeneralRe: Complex code in conditionals Pin
charlieg4-Aug-15 6:22
charlieg4-Aug-15 6:22 
AnswerRe: Complex code in conditionals Pin
Stefan_Lang11-Aug-15 2:34
Stefan_Lang11-Aug-15 2:34 
Questionstrcpy dilemma - it works half way Pin
Vaclav_3-Aug-15 15:19
Vaclav_3-Aug-15 15:19 
I am going crazy over this simple test code.

C++
char *Result ={"Result init "};
char *Source = {"123"};
char *Destination  = {"456"};


I can verify that all strings are as initialized.

Now I run this strcpy

C++
Result = strcpy(Source,Destination); 


Now I can verify, using same approach as before , that
Result = 123 - AKA orignal Source, it was Result init before strcpy was run.
and Source is STILL 123.

Result suppose to be Source ( source destination swap) , but I expect the Source to be COPY of the original Destination AKA 456

What am I doing wrong?
strcpy executes giving correct return, but unmodified Destination.
Am I doing the initialization correctly?

Am I nuts?

Standard stdio using GCC compiler /tools on Arduino IDE.
Thank for your help.
Vaclav

modified 3-Aug-15 22:30pm.

GeneralRe: strcpy dilemma - it works half way Pin
PIEBALDconsult3-Aug-15 16:12
mvePIEBALDconsult3-Aug-15 16:12 
AnswerRe: strcpy dilemma - it works half way Pin
Richard MacCutchan3-Aug-15 20:48
mveRichard MacCutchan3-Aug-15 20:48 
AnswerRe: strcpy dilemma - it works half way Pin
CPallini3-Aug-15 21:08
mveCPallini3-Aug-15 21:08 
GeneralRe: strcpy dilemma - it works half way Pin
Vaclav_4-Aug-15 3:49
Vaclav_4-Aug-15 3:49 
GeneralRe: strcpy dilemma - it works half way Pin
CPallini4-Aug-15 6:54
mveCPallini4-Aug-15 6:54 
GeneralSOLVED Re: strcpy dilemma - it works half way Pin
Vaclav_4-Aug-15 7:41
Vaclav_4-Aug-15 7:41 
AnswerRe: strcpy dilemma - it works half way Pin
Arthur V. Ratz13-Aug-15 18:54
professionalArthur V. Ratz13-Aug-15 18:54 
QuestionMsbuild for VC++ project having path errors Pin
code_az3-Aug-15 12:54
code_az3-Aug-15 12:54 
Questionruntime error due to corruption of heap Pin
Member 93502372-Aug-15 22:22
Member 93502372-Aug-15 22:22 
AnswerRe: runtime error due to corruption of heap Pin
Member 93502372-Aug-15 22:33
Member 93502372-Aug-15 22:33 
SuggestionRe: runtime error due to corruption of heap Pin
David Crow3-Aug-15 2:12
David Crow3-Aug-15 2:12 
AnswerRe: runtime error due to corruption of heap Pin
Daniel Pfeffer3-Aug-15 0:52
professionalDaniel Pfeffer3-Aug-15 0:52 
AnswerRe: runtime error due to corruption of heap Pin
Jochen Arndt3-Aug-15 2:13
professionalJochen Arndt3-Aug-15 2:13 
QuestionConvert to ASCII ? Pin
Vaclav_1-Aug-15 3:52
Vaclav_1-Aug-15 3:52 
AnswerRe: Convert to ASCII ? Pin
CPallini1-Aug-15 4:15
mveCPallini1-Aug-15 4:15 
AnswerRe: Convert to ASCII ? Pin
Richard MacCutchan1-Aug-15 4:33
mveRichard MacCutchan1-Aug-15 4:33 
GeneralRe: Convert to ASCII ? Pin
Vaclav_1-Aug-15 9:40
Vaclav_1-Aug-15 9:40 

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.