Identify errors in following code All Questions › Category: Cpp Language › Identify errors in following code 0 Vote Up Vote Down Anonymous asked 3 years ago int val = 100; const int *pc = &val; //#2 *pc = 200; //#3 const int &rc = val; //#4 ++rc; //#5 int *ptr = pc; //#6 *ptr = 300; //#7 Options: Line no’s 3 & 5 Line no’s 3, 5, & 6 Line no’s 3, 5, & 7 Line no 6 only 0 Answers