Click here to Skip to main content
15,913,669 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
Tarun Jha wrote:
...like when returning a multi-dimensional array from a user-defined function...
The issue you may be having is you are searching for something very specific. Broaden your search. Instead of searching for a two- or three-dimension array, just focus on arrays in general. Visually, you might look at them something like:
// one 'row' with five items
int arr[5]; // [0][1][2][3][4]

// three 'rows' with five items each
int arr[3][5]; // [0] - [0][1][2][3][4]
               // [1] - [0][1][2][3][4]
               // [2] - [0][1][2][3][4]

// two 'levels' of three 'rows' with five items each
int arr[2][3][5]; // [0] - [0] - [0][1][2][3][4]
                  // [0] - [1] - [0][1][2][3][4]
                  // [0] - [2] - [0][1][2][3][4]

                  // [1] - [0] - [0][1][2][3][4]
                  // [1] - [1] - [0][1][2][3][4]
                  // [1] - [2] - [0][1][2][3][4]

"One man's wage rise is another man's price increase." - Harold Wilson

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles


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 
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 
GeneralRe: console app which handle windows events Pin
Richard MacCutchan1-Feb-18 23:01
mveRichard MacCutchan1-Feb-18 23:01 
GeneralRe: console app which handle windows events Pin
leon de boer4-Feb-18 13:32
leon de boer4-Feb-18 13:32 
GeneralRe: console app which handle windows events Pin
Richard MacCutchan4-Feb-18 21:52
mveRichard MacCutchan4-Feb-18 21:52 
GeneralRe: console app which handle windows events Pin
Victor Nijegorodov2-Feb-18 4:07
Victor Nijegorodov2-Feb-18 4:07 
AnswerRe: console app which handle windows events Pin
Jochen Arndt2-Feb-18 0:23
professionalJochen Arndt2-Feb-18 0:23 
AnswerRe: console app which handle windows events Pin
leon de boer4-Feb-18 13:42
leon de boer4-Feb-18 13:42 
Questionriver crossing priests and devils in c program Pin
Member 1365554231-Jan-18 23:14
Member 1365554231-Jan-18 23:14 

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.