whats wrong with this one? i am trying to display the values in an odd index can any one help?
int main()
{
int numArrays[] = {"2 ,67 ,23 ,5 ,7 ,34 ,14 ,4 ,8 , 62"};
int i;
printf("A. Values of NumArray with Odd Index: \n");
for(i=0;i<=10; i++)
{
i+=1;
printf("%d ", NumArray[i]);
}
}