• 2022-05-27
    Which of the following statements will not compile
    A: if(true);
    B: if(true) {}
    C: if(true) {;}
    D: if(true) {;;}
    E: if(true); {};
    F: All statements will compile.