Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int x = 5;
- int* px = &x;
- const int* cpx = &x;
- int* const pxc = &x;
- const int* const cpxc = &x;
- *px = 1;
- ++px;
- //*cpx = 1; //нельзя
- //++cpx;
- //*pxc = 1;
- //++pxc; //нельзя
- //*cpxc = 1; //нельзя
- //++cpxc; //нельзя
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement