Question:Consider the following code.int i = 4, *j, *k; Which one of the following statements will result in Compilation error?
int i = 4, *j, *k;
A j = &i; B j = j + 4; C j = j - 2; D k = j + 3; E j = j * 2;
+ AnswerE
+ Report