[ create a new paste ] login | about

Link: http://codepad.org/MR7Dsvlz    [ raw code | output | fork ]

C++, pasted on Dec 20:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>

    using namespace std;

    int main ( ) {

        int x = 32 ;

        const int * ptr1 = & x ;

        *((int *)ptr1) = 64 ;

        cout << x ; 
        }


Output:
1
64


Create a new paste based on this one


Comments: