Click here to Skip to main content
15,799,363 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralSOLVED Casting structures - another basic question Pin
Vaclav_24-Dec-12 9:04
Vaclav_24-Dec-12 9:04 
GeneralRe: SOLVED Casting structures - another basic question Pin
Erudite_Eric2-Jan-13 8:13
Erudite_Eric2-Jan-13 8:13 
QuestionHow to count pages in PDF file using VC++ Pin
shanmugarajaa23-Dec-12 19:00
shanmugarajaa23-Dec-12 19:00 
AnswerRe: How to count pages in PDF file using VC++ Pin
Richard MacCutchan23-Dec-12 23:04
mveRichard MacCutchan23-Dec-12 23:04 
AnswerRe: How to count pages in PDF file using VC++ Pin
Jijo.Raj27-Dec-12 0:29
Jijo.Raj27-Dec-12 0:29 
QuestionHow to implement C++ raw string literals in VIsual C++ 2010? Pin
Falconapollo22-Dec-12 19:03
Falconapollo22-Dec-12 19:03 
Questionproblems returning/printing poiner Pin
doughyi8u20-Dec-12 15:16
doughyi8u20-Dec-12 15:16 
AnswerRe: problems returning/printing poiner Pin
Jochen Arndt20-Dec-12 22:15
professionalJochen Arndt20-Dec-12 22:15 
Just use a local variable for copying or save the value of destination in a local variable to be returned upon exit:
C++
char *my_strcpy(char *destination, const char *source)
{
    char *ret = destination;
    while (*source != '\0')
    {
        *destination++ = *source++;
    }
    *destination = '\0';
    return ret;
}

AnswerRe: problems returning/printing poiner Pin
Richard MacCutchan20-Dec-12 23:47
mveRichard MacCutchan20-Dec-12 23:47 
GeneralRe: problems returning/printing poiner Pin
Jochen Arndt21-Dec-12 0:07
professionalJochen Arndt21-Dec-12 0:07 
GeneralRe: problems returning/printing poiner Pin
Richard MacCutchan21-Dec-12 1:19
mveRichard MacCutchan21-Dec-12 1:19 
QuestionC++ ownerdrawfixed combobox "header" Pin
NoviceEx19-Dec-12 3:49
NoviceEx19-Dec-12 3:49 
AnswerRe: C++ ownerdrawfixed combobox "header" Pin
jeron119-Dec-12 5:19
jeron119-Dec-12 5:19 
QuestionHow to make a project resolution independent.? Pin
mbatra3119-Dec-12 0:56
mbatra3119-Dec-12 0:56 
AnswerRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 1:29
professionalJochen Arndt19-Dec-12 1:29 
GeneralRe: How to make a project resolution independent.? Pin
mbatra3119-Dec-12 1:39
mbatra3119-Dec-12 1:39 
GeneralRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 1:52
professionalJochen Arndt19-Dec-12 1:52 
GeneralRe: How to make a project resolution independent.? Pin
mbatra3119-Dec-12 2:25
mbatra3119-Dec-12 2:25 
GeneralRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 2:33
professionalJochen Arndt19-Dec-12 2:33 
GeneralRe: How to make a project resolution independent.? Pin
mbatra3119-Dec-12 2:44
mbatra3119-Dec-12 2:44 
GeneralRe: How to make a project resolution independent.? Pin
Jochen Arndt19-Dec-12 3:06
professionalJochen Arndt19-Dec-12 3:06 
AnswerRe: How to make a project resolution independent.? Pin
Alan Balkany19-Dec-12 5:25
Alan Balkany19-Dec-12 5:25 
GeneralRe: How to make a project resolution independent.? Pin
Kimcopeland2-Apr-21 17:18
Kimcopeland2-Apr-21 17:18 
QuestionASM with stams library of C ++ Pin
Gurunathkudalkar18-Dec-12 22:15
Gurunathkudalkar18-Dec-12 22:15 
AnswerRe: ASM with stams library of C ++ Pin
CPallini18-Dec-12 23:19
mveCPallini18-Dec-12 23:19 

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.