In your code, you've declared the 'setValue' identifier as an array of four characters.
In your if-statement, you are not specifying which particular element of the array you're comparing, so setValue simply gets interpreted as a pointer to the memory address of the first element in the array.
Also don't forget about the apostrophes.
I'm not sure in what context your code is applied, but here's an example : if(setValue[0] == '1') {/*code*/}