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

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

q++;
(*q)++;
