How to find an element in an array in C
- by gkaykck
I am trying to find the location of an element in the array.
I have tried to use this code i generated
for(i=0;i<10;i++)
{
if (strcmp(temp[0],varptr[i])==0) j=i;
}
varptr is a pointer which points to array var[11][10] and it is by the definition *varptr[11][10]. I have assigned strings to var[i] and i want to get the "i" number of…