Note: (Restricted functionality due to obvious reasons!)
Minimal Code ( Raw-View ) :
#include<iostream>
#include<conio.h>
using namespace std;
int main(){
const int ip =90 ; // pointer (int)
ip = 32;
//ip = 70;
//ip = 83;
cout<<ip;
//cout<<*ip;
//cout<<&ip;
getch();
return 0;
}