
Which statement(s) will give an error for the following code -
#include <iostream>
using namespace std;

int main(){
    int p = 5;
    int * const q = &p;
}

Options
p++;
q++;
(*q)++;


q++;
