37

int main()
{
int *const p;
int i=2;
p=&i;
printf("%d",*p);
return 0;
}

Output


Compilation Error.

Related Posts