Multiple choice In the C language, how does one can write the statement “if I not equal to zero”? If (i=!0) If (i==0) If (i!=0) If (I NOT=0) Reveal answer Fill a bubble to check yourself C Correct answer Explanation In C, the inequality operator is !=. Option C correctly uses this syntax to check if i is not equal to 0.