0
How change this to C ??PLZđ
int i,j,c,stride,array[512]; for (i=0; 'i<10000; i ++) for (j=0;j<512;j=j+stride) C = array[j] + 17;
1 Answer
+ 2
Minus a few minor details it is C code. The ' in first for line should not be there. The C in last line should be c. Issues: stride and array are not initialized. There is no need for the loops as coded as c could be calculated in one line.