xxxxxxxxxx
int array[] = {1, 2, 3, 4, 5};
int value_to_skip = 3;
for(int i = 0; i < array.size(); i++) {
if(i == value_to_skip)
continue;
// Use the "continue" keyword to skip the iteration
std::cout << array[i] << std::endl;
}
/* Output :
1
2
4
5
*/