Click here to Skip to main content
15,894,362 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: What IDE do you use for C/C++ development? Pin
CPallini6-Feb-18 23:49
mveCPallini6-Feb-18 23:49 
GeneralRe: What IDE do you use for C/C++ development? Pin
Davide Coppola6-Feb-18 23:52
Davide Coppola6-Feb-18 23:52 
QuestionRe: What IDE do you use for C/C++ development? Pin
CPallini7-Feb-18 0:00
mveCPallini7-Feb-18 0:00 
AnswerRe: What IDE do you use for C/C++ development? Pin
Davide Coppola7-Feb-18 0:14
Davide Coppola7-Feb-18 0:14 
AnswerRe: What IDE do you use for C/C++ development? Pin
Richard MacCutchan7-Feb-18 0:44
mveRichard MacCutchan7-Feb-18 0:44 
AnswerRe: What IDE do you use for C/C++ development? Pin
David Crow7-Feb-18 2:37
David Crow7-Feb-18 2:37 
GeneralRe: What IDE do you use for C/C++ development? Pin
Maximilien7-Feb-18 4:04
Maximilien7-Feb-18 4:04 
GeneralRe: What IDE do you use for C/C++ development? Pin
David Crow7-Feb-18 4:08
David Crow7-Feb-18 4:08 
GeneralRe: What IDE do you use for C/C++ development? Pin
jeron17-Feb-18 4:34
jeron17-Feb-18 4:34 
GeneralRe: What IDE do you use for C/C++ development? Pin
CPallini7-Feb-18 5:41
mveCPallini7-Feb-18 5:41 
GeneralRe: What IDE do you use for C/C++ development? Pin
Randor 8-Feb-18 20:29
professional Randor 8-Feb-18 20:29 
AnswerRe: What IDE do you use for C/C++ development? Pin
David Crow9-Feb-18 3:04
David Crow9-Feb-18 3:04 
GeneralRe: What IDE do you use for C/C++ development? Pin
Randor 9-Feb-18 9:37
professional Randor 9-Feb-18 9:37 
AnswerRe: What IDE do you use for C/C++ development? Pin
David Crow9-Feb-18 9:38
David Crow9-Feb-18 9:38 
GeneralRe: What IDE do you use for C/C++ development? Pin
Victor Nijegorodov8-Feb-18 10:33
Victor Nijegorodov8-Feb-18 10:33 
AnswerRe: What IDE do you use for C/C++ development? Pin
Joe Woodbury7-Feb-18 5:47
professionalJoe Woodbury7-Feb-18 5:47 
AnswerRe: What IDE do you use for C/C++ development? Pin
vishaljamdagni11-Feb-18 22:48
professionalvishaljamdagni11-Feb-18 22:48 
AnswerRe: What IDE do you use for C/C++ development? Pin
enhzflep24-Mar-18 13:07
enhzflep24-Mar-18 13:07 
QuestionRecommendation for some books for in-depth knowledge of pointers, multi-dimensional arrays, recursions . (In c/c++) Pin
Tarun Jha4-Feb-18 9:28
Tarun Jha4-Feb-18 9:28 
AnswerRe: Recommendation for some books for in-depth knowledge of pointers, multi-dimensional arrays, recursions . (In c/c++) Pin
CPallini5-Feb-18 3:27
mveCPallini5-Feb-18 3:27 
SuggestionRe: Recommendation for some books for in-depth knowledge of pointers, multi-dimensional arrays, recursions . (In c/c++) Pin
David Crow5-Feb-18 5:44
David Crow5-Feb-18 5:44 
AnswerRe: Recommendation for some books for in-depth knowledge of pointers, multi-dimensional arrays, recursions . (In c/c++) Pin
Joe Woodbury6-Feb-18 6:16
professionalJoe Woodbury6-Feb-18 6:16 
They're all pointers, and pointers are simply an address in memory.

Everyone is different, but for me, the best way to really understand a C++ concept is to write a small console program and experiment using the scientific method--that is, I hypothesize how something should work, write simple code to test that hypothesis and refine. (Sometimes, I open a disassembly view in debug mode, but that may understandably be even more confusing for many.)

Edit: A word of warning. Don't return a pointer to an object allocated on the called function's stack. While the data it points to may be valid immediately after the call, it will likely become corrupt with the next function call.
Questionconsole app which handle windows events Pin
Fedrer1-Feb-18 22:38
Fedrer1-Feb-18 22:38 
AnswerRe: console app which handle windows events Pin
Richard MacCutchan1-Feb-18 22:50
mveRichard MacCutchan1-Feb-18 22:50 
GeneralRe: console app which handle windows events Pin
Fedrer1-Feb-18 22:56
Fedrer1-Feb-18 22:56 

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.