Click here to Skip to main content
15,901,001 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: interpolation subroutine c++ Pin
Alan Balkany16-Mar-10 3:56
Alan Balkany16-Mar-10 3:56 
QuestionExchange SOAP Contacts Sync Pin
Alexander M.,12-Mar-10 5:19
Alexander M.,12-Mar-10 5:19 
AnswerRe: Exchange SOAP Contacts Sync Pin
Richard MacCutchan12-Mar-10 22:07
mveRichard MacCutchan12-Mar-10 22:07 
QuestionAllocation of (**)[2] [Solved] Pin
xuxiuxun12-Mar-10 4:17
xuxiuxun12-Mar-10 4:17 
AnswerRe: Allocation of (**)[2] Pin
Eugen Podsypalnikov12-Mar-10 4:32
Eugen Podsypalnikov12-Mar-10 4:32 
AnswerRe: Allocation of (**)[2] Pin
Chris Losinger12-Mar-10 4:32
professionalChris Losinger12-Mar-10 4:32 
AnswerRe: Allocation of (**)[2] Pin
xuxiuxun12-Mar-10 15:41
xuxiuxun12-Mar-10 15:41 
GeneralRe: Allocation of (**)[2] Pin
Richard MacCutchan12-Mar-10 22:06
mveRichard MacCutchan12-Mar-10 22:06 
In all of the above you do not seem to be allocating any space for your arrays. The first requirement is to know how many rows are required by the functions OutputX. For example you have the prototype:
int Output1(float out1[][2]);

which means that Output1 takes the address of a two-dimensional array, with some number of rows each of two columns. Assuming it requires 20 rows you could allocate the array thus:
float out1[20][2];
int i = Output1(out1);

However, without knowing more details of the above functions it is difficult to be more specific.
txtspeak is the realm of 9 year old children, not developers. Christian Graus

GeneralRe: Allocation of (**)[2] Pin
xuxiuxun13-Mar-10 0:27
xuxiuxun13-Mar-10 0:27 
GeneralRe: Allocation of (**)[2] Pin
Richard MacCutchan13-Mar-10 10:07
mveRichard MacCutchan13-Mar-10 10:07 
GeneralRe: Allocation of (**)[2] Pin
xuxiuxun13-Mar-10 19:49
xuxiuxun13-Mar-10 19:49 
QuestionMessage Removed Pin
12-Mar-10 4:00
xuxiuxun12-Mar-10 4:00 
AnswerRe: Allocation of (**)[2] Pin
Chris Losinger12-Mar-10 4:14
professionalChris Losinger12-Mar-10 4:14 
GeneralRe: Allocation of (**)[2] Pin
xuxiuxun12-Mar-10 4:25
xuxiuxun12-Mar-10 4:25 
Questionwarning LNK4222: exported symbol 'DllRegisterServer' should not be assigned an ordinal Pin
sashoalm12-Mar-10 2:51
sashoalm12-Mar-10 2:51 
AnswerRe: warning LNK4222: exported symbol 'DllRegisterServer' should not be assigned an ordinal Pin
Eugen Podsypalnikov12-Mar-10 3:02
Eugen Podsypalnikov12-Mar-10 3:02 
GeneralRe: warning LNK4222: exported symbol 'DllRegisterServer' should not be assigned an ordinal Pin
sashoalm12-Mar-10 3:09
sashoalm12-Mar-10 3:09 
QuestionSeven : What Happended To ShellExecute ? Pin
Nicolas MEURET12-Mar-10 2:11
Nicolas MEURET12-Mar-10 2:11 
QuestionRe: Seven : What Happended To ShellExecute ? Pin
sashoalm12-Mar-10 3:23
sashoalm12-Mar-10 3:23 
AnswerRe: Seven : What Happended To ShellExecute ? [modified] Pin
Nicolas MEURET12-Mar-10 4:38
Nicolas MEURET12-Mar-10 4:38 
GeneralRe: Seven : What Happended To ShellExecute ? Pin
sashoalm12-Mar-10 5:27
sashoalm12-Mar-10 5:27 
QuestionHaving different value for a global variable per thread. Pin
Code-o-mat12-Mar-10 1:20
Code-o-mat12-Mar-10 1:20 
AnswerRe: Having different value for a global variable per thread. Pin
sunlin712-Mar-10 1:37
sunlin712-Mar-10 1:37 
GeneralRe: Having different value for a global variable per thread. Pin
Code-o-mat12-Mar-10 1:44
Code-o-mat12-Mar-10 1:44 
AnswerRe: Having different value for a global variable per thread. Pin
Jonathan Davies12-Mar-10 1:38
Jonathan Davies12-Mar-10 1:38 

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.