Solved
why it does not enter the if statement?
I have a code made to check an if statement and then perform something. here is the if statement
for(int j=0;j<10;j++)
{
if(removed_Num==USERS[j])
{ //do something}
}USERS[j] is a 13 element array and removed_Num is also a 13 element array. I've check in the debug mode and saw USERS[j] is equal with removed_Num. but it doesn't enter the if statement. why is that?
