Click here to Skip to main content
15,885,435 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Updating my projects to retarget to .NET 4.6 Pin
John Schroedl20-Aug-15 7:29
professionalJohn Schroedl20-Aug-15 7:29 
Questionusing 'mkdir' for creating new directory Pin
Member 93502373-Aug-15 5:24
Member 93502373-Aug-15 5:24 
AnswerRe: using 'mkdir' for creating new directory Pin
Richard MacCutchan3-Aug-15 5:50
mveRichard MacCutchan3-Aug-15 5:50 
GeneralRe: using 'mkdir' for creating new directory Pin
Member 93502374-Aug-15 4:26
Member 93502374-Aug-15 4:26 
GeneralRe: using 'mkdir' for creating new directory Pin
Richard MacCutchan4-Aug-15 5:51
mveRichard MacCutchan4-Aug-15 5:51 
GeneralRe: using 'mkdir' for creating new directory Pin
PIEBALDconsult3-Aug-15 6:16
mvePIEBALDconsult3-Aug-15 6:16 
AnswerRe: using 'mkdir' for creating new directory Pin
Wes Aday3-Aug-15 9:26
professionalWes Aday3-Aug-15 9:26 
Questionadding pointer arrays Pin
Member 935023729-Jul-15 22:09
Member 935023729-Jul-15 22:09 
AnswerRe: adding pointer arrays Pin
Richard Andrew x6430-Jul-15 9:29
professionalRichard Andrew x6430-Jul-15 9:29 
AnswerRe: adding pointer arrays Pin
Richard MacCutchan30-Jul-15 21:26
mveRichard MacCutchan30-Jul-15 21:26 
GeneralRe: adding pointer arrays Pin
Member 935023730-Jul-15 21:51
Member 935023730-Jul-15 21:51 
GeneralRe: adding pointer arrays Pin
Richard MacCutchan30-Jul-15 22:16
mveRichard MacCutchan30-Jul-15 22:16 
OK, so you know the length of the array, so you just allocate it as normal:
C++
int arraySize = 10+120+20;
bool* boolArray = new bool[arraySize];
memset(boolArray, 0, sizeof(bool) * arraySize);

gives you an array with all elements set to zero. You now just need to add the code to set the various other items as required.
C++
bool* pBool = boolArray + 10; // skip first 10 elements
for (int i = 0; i < 10; ++i) // loop round each set of 12 elements, i.e. 10 times
{
    // use the pBool pointer to set random values into the 12 elements
    // ...
    pBool += 12; // point to the next set, and repeat
}

GeneralRe: adding pointer arrays Pin
Member 935023730-Jul-15 23:16
Member 935023730-Jul-15 23:16 
GeneralRe: adding pointer arrays Pin
Richard MacCutchan30-Jul-15 23:42
mveRichard MacCutchan30-Jul-15 23:42 
GeneralRe: adding pointer arrays Pin
Member 935023731-Jul-15 0:34
Member 935023731-Jul-15 0:34 
GeneralRe: adding pointer arrays Pin
Richard MacCutchan31-Jul-15 0:36
mveRichard MacCutchan31-Jul-15 0:36 
QuestionDeclaration terminated incorrectly Pin
Pramitha P Kamath27-Jul-15 8:35
Pramitha P Kamath27-Jul-15 8:35 
AnswerRe: Declaration terminated incorrectly Pin
Wes Aday27-Jul-15 8:59
professionalWes Aday27-Jul-15 8:59 
GeneralRe: Declaration terminated incorrectly Pin
Pramitha P Kamath30-Jul-15 8:46
Pramitha P Kamath30-Jul-15 8:46 
AnswerRe: Declaration terminated incorrectly Pin
Richard MacCutchan30-Jul-15 21:14
mveRichard MacCutchan30-Jul-15 21:14 
Questionc++ Pin
Member 1184600721-Jul-15 21:43
Member 1184600721-Jul-15 21:43 
AnswerRe: c++ Pin
Richard MacCutchan21-Jul-15 21:53
mveRichard MacCutchan21-Jul-15 21:53 
GeneralRe: c++ Pin
Sascha Lefèvre25-Jul-15 12:39
professionalSascha Lefèvre25-Jul-15 12:39 
QuestionRe: c++ Pin
Paul Conrad13-Oct-15 7:20
professionalPaul Conrad13-Oct-15 7:20 
Questionc++ Pin
Member 1184600721-Jul-15 21:19
Member 1184600721-Jul-15 21:19 

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.