Hi guys,
I will delete ever x elements from a 1D array.
This is my idea:
I have a 1D array with 512x1024 point. So I will delete the element 512 for 1024 times. My orginal array have the sizeof 512x1024 element.
- Step
Then I create a new empty array with 511x1024 elements.
2.Step
In the next step I will copy the original array in the new array, but I dont know how I skip the 512. elemet.
Can somebody help me with the copy process pls