i have an array of 8 elements and then i have to do a different operation on some of the elements
right now i am doing something like this
switch(array_index){
case 0,1:
do some operations...
break;..and so on
but i get an error that says....expectd a ":"
can anyone please tell me how do i access the desired elements of an array to further operate on them??