Resolved! 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 statementfor(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'v...