(SOLVED)Help with ISO C++ forbids comparison between pointer and integer.

if (digitalRead.kondisiEr[] == memberE[] && digitalRead.kondisiDEr []= "Negatif") { //something wrong here
  1. Comparing pointers to strings is silly. The pointers are not the same. Use strcmp() to compare what is pointed to.

  2. Only you have any idea what the hell that digitalRead mess is there.