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

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


p++; 
(*q)++; 
