Question:Which of the following statements will result in a compilation error?
A int n=5, x; x=n++; B int n=5, x; x= ++n++; C int n=5, x; x= (n+1)++; D int n=5, x=6; x= (n+x)++; E None
+ AnswerB C D
+ Report