Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <cstdlib>
- //int mpow(int *a, int *b);
- using namespace std;
- int main()
- {
- int n;
- cin >> n;
- int *p = &n;
- int* __restrict p = &n;
- int *k = NULL;
- p = k;
- cout << (*p) << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement