Software Archive
Read-only legacy content
17060 Discussions

Array Notation for Non-static Memory

danprice
Beginner
796 Views
Can Cilk's array notation be used with arrays that have been allocated dynamically with malloc or new (or any arbitrary pointer)? All of the examples show usage based off of a static array.
0 Kudos
1 Reply
JD_Patel
Employee
796 Views
yes, you can use array notation on dynamically allocated array... for example:

double* time = new double[NUM_OPTIONS];
time[0:NUM_OPTIONS] = 1.1;

- J.D. Patel
0 Kudos
Reply