Which of the following will lead to a compile-time error? Mark all that apply.
if (a> b) then c = 0;
if a b, then c = 0;
if (a > b) { c = 0; }
if (a > b) c = 0;
if a b { c = 0; }
if (a> b) c = 0 else b = 0;
if (a > b) ( c = 0; )
Answers
Answered by
3
Answer:
sorry I didn't know the answer
soory
Similar questions