Which of the following will lead to a compile-time error? Mark all that apply. A . if a > b { c = 0; } , B . if (a > b) {c = 0; }, C . if (a > b) c = 0; ,D .if (a > b) then c = 0; ,E . if (a > b) (c = 0; ) ,F . if a > b, then c = 0; ,G . if (a > b) c = 0 else b = 0;
Answers
Answered by
0
Answer:
I don't understand your question
Similar questions