-
Identify the incorrect statements.
int num = 23;
Statement (i): int *ptr = &(num + 2);
Statement (ii): int *ptr2 = #
Statement (iii): &&num = 50;
-
- Statement (ii) and (iii) are wrong
- Statement (i) and (iii) are wrong
- Statement (i) and (ii) are wrong
- All the three are wrong
- None of these
- Statement (ii) and (iii) are wrong
Correct Option: B
In statement (i) value is required as unary ‘&’ operand and in statement (iii) value is required as left operand.