Click here to Skip to main content
15,881,173 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Stack overflow Pin
Luc Pattyn5-Apr-10 16:52
sitebuilderLuc Pattyn5-Apr-10 16:52 
GeneralRe: Stack overflow Pin
Tim Craig5-Apr-10 18:20
Tim Craig5-Apr-10 18:20 
GeneralRe: Stack overflow Pin
Luc Pattyn5-Apr-10 18:31
sitebuilderLuc Pattyn5-Apr-10 18:31 
GeneralRe: Stack overflow Pin
Luc Pattyn5-Apr-10 18:31
sitebuilderLuc Pattyn5-Apr-10 18:31 
GeneralRe: Stack overflow Pin
CPallini5-Apr-10 21:27
mveCPallini5-Apr-10 21:27 
GeneralRe: Stack overflow Pin
Tim Craig6-Apr-10 8:31
Tim Craig6-Apr-10 8:31 
GeneralRe: Stack overflow Pin
CPallini6-Apr-10 9:23
mveCPallini6-Apr-10 9:23 
AnswerRe: Stack overflow Pin
Adam Roderick J5-Apr-10 19:02
Adam Roderick J5-Apr-10 19:02 
Try with malloc, that can used to represent multidimensional array.

int **nArray;
   int nRows = 10000;
   int nColumn = 100;
   nArray = (int**)malloc(nRows * sizeof(int *));
   ZeroMemory( nArray, 0 );
   if( 0 == nArray )
   {
       return 0;
   }
   for(int i = 0; i < nRows; i++)
   {
       nArray[i] = (int*)malloc( nColumn * sizeof(int));
       if( 0 == nArray[i] )
       {
           return 0;
       }
   }

Величие не Бога может быть недооценена.

QuestionRe: Stack overflow Pin
browneyes867-Apr-10 4:27
browneyes867-Apr-10 4:27 
AnswerRe: Stack overflow Pin
jagadish bharath7-Apr-10 5:42
jagadish bharath7-Apr-10 5:42 
QuestionRe: Stack overflow Pin
browneyes867-Apr-10 5:55
browneyes867-Apr-10 5:55 
AnswerRe: Stack overflow Pin
jagadish bharath7-Apr-10 7:18
jagadish bharath7-Apr-10 7:18 
Questiondelete breaking heap [modified] - solved Pin
PaulowniaK5-Apr-10 15:21
PaulowniaK5-Apr-10 15:21 
AnswerRe: delete breaking heap Pin
Adam Roderick J5-Apr-10 19:03
Adam Roderick J5-Apr-10 19:03 
AnswerRe: delete breaking heap [modified] Pin
Eugen Podsypalnikov5-Apr-10 20:22
Eugen Podsypalnikov5-Apr-10 20:22 
AnswerRe: delete breaking heap [modified] - solved Pin
Tim Craig6-Apr-10 8:34
Tim Craig6-Apr-10 8:34 
QuestionhInstance / Win32 Pin
Fareed Rizkalla5-Apr-10 6:19
Fareed Rizkalla5-Apr-10 6:19 
AnswerRe: hInstance / Win32 Pin
Chris Meech5-Apr-10 6:27
Chris Meech5-Apr-10 6:27 
AnswerRe: hInstance / Win32 Pin
Joe Woodbury5-Apr-10 6:31
professionalJoe Woodbury5-Apr-10 6:31 
QuestionRe: hInstance / Win32 Pin
Fareed Rizkalla5-Apr-10 6:44
Fareed Rizkalla5-Apr-10 6:44 
AnswerRe: hInstance / Win32 Pin
Joe Woodbury5-Apr-10 7:02
professionalJoe Woodbury5-Apr-10 7:02 
Questionsort CListCtrl specially Pin
includeh105-Apr-10 6:18
includeh105-Apr-10 6:18 
QuestionRe: sort CListCtrl specially Pin
David Crow5-Apr-10 16:36
David Crow5-Apr-10 16:36 
Questionc progrmng code help for the following algo Pin
abhijit.hzrk5-Apr-10 5:38
abhijit.hzrk5-Apr-10 5:38 
AnswerRe: c progrmng code help for the following algo Pin
Chris Losinger5-Apr-10 8:07
professionalChris Losinger5-Apr-10 8:07 

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.