Click here to Skip to main content
15,880,469 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: dll under linux Pin
ThatsAlok26-Feb-06 22:31
ThatsAlok26-Feb-06 22:31 
Questionabout HotKey Pin
HOW WHAT25-Feb-06 4:45
HOW WHAT25-Feb-06 4:45 
QuestionBackup-programm for drivers Pin
Boris van de Laarschot25-Feb-06 4:27
Boris van de Laarschot25-Feb-06 4:27 
AnswerRe: Backup-programm for drivers Pin
Maximilien25-Feb-06 4:55
Maximilien25-Feb-06 4:55 
GeneralRe: Backup-programm for drivers Pin
Boris van de Laarschot25-Feb-06 5:28
Boris van de Laarschot25-Feb-06 5:28 
QuestionClassic question: dynamic 2D arrays in standard C Pin
bouli25-Feb-06 2:41
bouli25-Feb-06 2:41 
AnswerRe: Classic question: dynamic 2D arrays in standard C Pin
Stephen Hewitt25-Feb-06 2:45
Stephen Hewitt25-Feb-06 2:45 
GeneralRe: Classic question: dynamic 2D arrays in standard C Pin
bouli25-Feb-06 2:54
bouli25-Feb-06 2:54 
Hi steve,
Thanks for your reply.
Actually I am targetting the algorithm with the loops and use it as a normal array.
<br />
int** myArray=NULL;<br />
<br />
int** AllocateArray(int nHeight, int nWidth)<br />
{<br />
int** newArray=NULL;<br />
int i, j;<br />
<br />
for (i=0; i < nHeight; i++)<br />
.... // I don't remember<br />
<br />
return newArray;<br />
}<br />
<br />
void FreeArray(int*** array)<br />
{<br />
// free the array...<br />
}<br />
<br />
// usage<br />
int** myArray=AllocateArray(32, 32);<br />
<br />
// access<br />
myArray[i][j]<br />
<br />
// delete<br />
FreeArray(&myArray);<br />

I don't remember the rest of the code.... that's the purpose of this topic Wink | ;)

Thanks for helping me.

Fred.



There is no spoon.

-- modified at 8:55 Saturday 25th February, 2006
GeneralRe: Classic question: dynamic 2D arrays in standard C Pin
bouli25-Feb-06 5:06
bouli25-Feb-06 5:06 
AnswerRe: Classic question: dynamic 2D arrays in standard C Pin
David Crow25-Feb-06 3:58
David Crow25-Feb-06 3:58 
GeneralRe: Classic question: dynamic 2D arrays in standard C Pin
bouli25-Feb-06 5:06
bouli25-Feb-06 5:06 
Questiona question that did not get any true answer :(( Pin
Hamed Musavi25-Feb-06 0:16
Hamed Musavi25-Feb-06 0:16 
AnswerRe: a question that did not get any true answer :(( Pin
Stephen Hewitt25-Feb-06 0:29
Stephen Hewitt25-Feb-06 0:29 
GeneralRe: a question that did not get any true answer :(( Pin
Hamed Musavi25-Feb-06 0:42
Hamed Musavi25-Feb-06 0:42 
GeneralRe: a question that did not get any true answer :(( Pin
Stephen Hewitt25-Feb-06 0:56
Stephen Hewitt25-Feb-06 0:56 
GeneralRe: a question that did not get any true answer :(( Pin
Hamed Musavi25-Feb-06 1:07
Hamed Musavi25-Feb-06 1:07 
GeneralRe: a question that did not get any true answer :(( Pin
Stephen Hewitt25-Feb-06 1:19
Stephen Hewitt25-Feb-06 1:19 
GeneralRe: a question that did not get any true answer :(( Pin
Hamed Musavi25-Feb-06 1:29
Hamed Musavi25-Feb-06 1:29 
GeneralRe: a question that did not get any true answer :(( Pin
Stephen Hewitt25-Feb-06 2:37
Stephen Hewitt25-Feb-06 2:37 
GeneralRe: a question that did not get any true answer :(( Pin
Hamed Musavi25-Feb-06 20:15
Hamed Musavi25-Feb-06 20:15 
QuestionRe: a question that did not get any true answer :(( Pin
Hamed Musavi25-Feb-06 1:09
Hamed Musavi25-Feb-06 1:09 
AnswerRe: a question that did not get any true answer :(( Pin
Stephen Hewitt25-Feb-06 1:12
Stephen Hewitt25-Feb-06 1:12 
GeneralRe: a question that did not get any true answer :(( Pin
Hamed Musavi25-Feb-06 1:20
Hamed Musavi25-Feb-06 1:20 
GeneralRe: a question that did not get any true answer :(( Pin
toxcct25-Feb-06 9:00
toxcct25-Feb-06 9:00 
GeneralRe: a question that did not get any true answer :(( Pin
Hamed Musavi25-Feb-06 20:24
Hamed Musavi25-Feb-06 20:24 

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.