#include #include int main() { const int i=100; const int const *t=&i; printf("%d",*t); system("pause"); return 0; }